-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1004 Bytes
/
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
{
"name": "@lightbase/platforms",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "patch-package",
"lint:ws": "npm run lint --workspaces --if-present --include-workspace-root",
"lint:ci:ws": "npm run lint:ci --workspaces --if-present --include-workspace-root",
"build:ws": "npm run build && npm run build --workspaces --if-present",
"clean:ws": "npm run clean --workspaces --if-present --include-workspace-root",
"build": "tsc --build",
"lint": "eslint . --fix --cache --cache-location .cache/eslint/ --color",
"test": "vitest",
"lint:ci": "eslint .",
"clean": "rm -rf ./.cache ./tsconfig.tsbuildinfo"
},
"devDependencies": {
"@types/node": "22.10.6",
"@lightbase/eslint-config": "*",
"@total-typescript/tsconfig": "1.0.4",
"@vitest/coverage-v8": "2.0.5",
"patch-package": "8.0.0",
"typescript": "5.7.3",
"vitest": "2.0.5"
},
"workspaces": ["packages/*", "apps/*"],
"volta": {
"node": "22.11.0",
"typescript": "5.7.2"
}
}