-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.55 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.55 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
47
48
49
{
"name": "assetpack",
"private": true,
"version": "1.7.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @assetpack/core",
"clean": "rimraf --glob dist 'packages/assetpack/test/**/.testInput' 'packages/assetpack/test/**/.testOutput' .assetpack 'packages/assetpack/test/cache'",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"version:main": "node scripts/version.mjs",
"version:branch": "VERSION=$VERSION npm run version:branch --workspace @assetpack/core",
"release": "npm run release --workspace @assetpack/core",
"release:branch": "PUBLISH_TAG=$PUBLISH_TAG npm run release:branch --workspace @assetpack/core",
"pretest": "npm run clean",
"test": "vitest run",
"test:lint": "eslint . --max-warnings 0",
"test:types": "tsc --noEmit",
"test:watch": "vitest",
"watch": "npm run --ws watch --if-present",
"deploy": "npm run deploy --workspace @assetpack/docs",
"docs:start": "npm run start --workspace @assetpack/docs",
"docs:build": "npm run build --workspace @assetpack/docs"
},
"lint-staged": {
"*": [
"npm run lint:fix"
]
},
"devDependencies": {
"@pixi/eslint-config": "^6.0.0",
"@tsconfig/node20": "^20.1.6",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"husky": "^9.1.7",
"inquirer": "^12.7.0",
"lint-staged": "^16.1.2",
"semver": "^7.7.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"overrides": {
"rimraf": "^6.0.1"
}
}