-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
58 lines (58 loc) · 1.45 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "assetpack",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @assetpack/core",
"clean": "xs clean",
"lint:fix": "xs lint --fix",
"prepare": "husky install",
"prerelease": "npm run test:lint && npm run build",
"release": "npm run release --workspace @assetpack/core",
"publish-ci": "npm run publish-ci --workspace @assetpack/core",
"pretest": "npm run clean",
"test": "vitest run",
"test:lint": "xs lint",
"test:types": "xs types",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs}": [
"npm run test:lint --"
]
},
"devDependencies": {
"@pixi/extension-scripts": "^2.4.1",
"@tsconfig/node20": "^20.1.4",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"extensionConfig": {
"tsconfig": "tsconfig.eslint.json",
"clean": [
"**/*/.testInput",
"**/*/.testOutput",
".assetpack",
"packages/assetpack/test/cache/**/*"
],
"lint": [
"**/*.{ts,tsx}"
]
}
}