-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"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:e2e:browser": "playwright test",
"lerna-version": "lerna version --no-push --no-git-tag-version",
"lint": "npm run lint:check",
"lint:check": "npm run lint:eslint",
"lint:fix": "npm run lint:eslint -- --fix",
"lint:eslint": "eslint --config eslint.config.mjs ."
},
"workspaces": [
"packages/*",
"e2e/browser/test-app"
],
"repository": {
"type": "git",
"url": "git+https://github.com/inrupt/typescript-sdk-tools.git"
},
"author": "Inrupt <engineering@inrupt.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/inrupt/typescript-sdk-tools/issues"
},
"homepage": "https://github.com/inrupt/typescript-sdk-tools#readme",
"dependencies": {
"lerna": "^9.0.7",
"rimraf": "^6.1.3",
"rollup": "^4.60.1",
"typescript": "^6.0.2"
},
"devDependencies": {
"@inrupt/eslint-config-base": "file:./packages/eslint-config/",
"@next/eslint-plugin-next": "^16.2.4",
"@playwright/test": "^1.59.1",
"@types/react": "^19.2.14",
"eslint": "^9.28.0",
"next": "^16.2.4"
}
}