-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.81 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "create-pixi.js",
"version": "1.1.0",
"homepage": "http://pixijs.com/",
"bugs": "https://github.com/pixijs/pixijs/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/create-pixi.git"
},
"funding": "https://opencollective.com/pixijs/contribute",
"license": "MIT",
"author": "PixiJS",
"type": "module",
"bin": {
"cpa": "index.js",
"create-pixi": "index.js"
},
"files": [
"index.js",
"templates/*",
"dist"
],
"workspaces": [
"templates/*",
"docs"
],
"scripts": {
"build": "vite build",
"build:docs": "npm run --workspace docs build",
"deploy": "npm run deploy --workspace docs",
"lint:fix": "npm run test:lint -- --fix",
"prepare": "husky",
"publish-ci": "xs publish",
"release": "xs bump,git-push",
"start": "node index.js",
"start:docs": "npm run --workspace docs start",
"test": "vitest run",
"test:lint": "eslint .",
"test:watch": "vitest"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"dependencies": {
"cross-spawn": "^7.0.6",
"minimist": "^1.2.8",
"picocolors": "^1.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@pixi/extension-scripts": "^3.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/cross-spawn": "^6.0.6",
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"rollup-plugin-node-externals": "^7.1.3",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0",
"vitest": "^2.1.6"
}
}