-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "create-gfx",
"description": "Set up a Web graphics project blazingly fast!",
"version": "0.7.1",
"author": "Loïc Chen <[email protected]>",
"homepage": "https://github.com/painfulexistence/create-gfx",
"repository": {
"type": "git",
"url": "[email protected]:painfulexistence/create-gfx.git"
},
"keywords": [
"webgl",
"webgpu",
"pixi",
"three",
"babylon",
"p5",
"motion-canvas",
"orillusion",
"rot-js"
],
"bin": "dist/cli.js",
"files": ["dist", "templates"],
"scripts": {
"prepare": "husky",
"dev": "tsup src/cli.ts --watch",
"build": "tsup src/cli.ts --minify",
"clean": "shx rm -rf dist",
"prepublishOnly": "bun run clean && bun run build",
"release": "release-it",
"demo": "vhs demo.tape"
},
"devDependencies": {
"@biomejs/biome": "^1.7.0",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^17.0.29",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"release-it": "^17.2.0",
"shx": "^0.3.4",
"tsup": "^5.12.1",
"typescript": "^4.6.3"
},
"license": "MIT",
"dependencies": {
"create-create-x": "^0.1.0"
}
}