-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "typescript-sdk-tools",
"description": "Meta-package for tools used whilst developing the Typescript SDK",
"version": "0.0.0",
"private": true,
"type": "commonjs",
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean",
"release": "scripts/release.sh",
"test": "playwright test",
"e2e:test:setup": "cd ./e2e/browser/test-app && npm ci",
"prepare-release": "scripts/prepare-release.sh",
"lint": "npm run lint:check",
"lint:check": "npm run lint:eslint && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.js \"packages/\" \"e2e/\" \"eslint-configs/\"",
"lint:prettier": "prettier \"{src,e2e,examples}/**/*.{ts,tsx,js,jsx,css}\" \"**/*.{md,mdx,yml}\"",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write"
},
"workspaces": [
"eslint-configs/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/inrupt/typescript-sdk-tools.git"
},
"author": "Inrupt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inrupt/typescript-sdk-tools/issues"
},
"homepage": "https://github.com/inrupt/typescript-sdk-tools#readme",
"dependencies": {
"@inrupt/eslint-config-lib": "file:./eslint-configs/eslint-config-lib",
"lerna": "^8.1.9",
"rimraf": "^6.0.1",
"rollup": "^4.29.1",
"typescript": "^5.7.2"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@rushstack/eslint-patch": "^1.10.4",
"@types/react": "^19.0.2",
"next": "^15.1.2"
}
}