forked from pixijs/assetpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "assetpack",
"private": true,
"version": "0.0.0",
"license": "MIT",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace @play-co/assetpack",
"clean": "xs clean",
"lint:fix": "xs lint --fix",
"prepare": "husky install",
"prerelease": "npm run test:lint && npm run build",
"release": "npm run --ws release --if-present",
"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"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,mjs}": [
"eslint --fix --max-warnings 0"
]
},
"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,js,mjs,tsx,jsx}"
]
}
}