-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 846 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
{
"name": "root",
"type": "module",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "pnpm -r --parallel --filter !./packages/demos/** run dev",
"dev:core": "pnpm --filter @slzr/three-app run dev",
"dev:docs": "pnpm --filter docs run dev",
"build": "pnpm -r --filter !./packages/demos/** run build",
"build:core": "pnpm --filter @slzr/three-app run build",
"build:docs": "pnpm --filter docs run build",
"test": "pnpm -r run test",
"publish": "pnpm --filter @slzr/three-app run publish",
"publish:patch": "pnpm --filter @slzr/three-app run publish:patch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^3.13.0",
"@types/node": "^22.10.5",
"eslint": "^9.17.0"
}
}