-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "canvas-demo",
"version": "1.0.0",
"description": "Canvas Demo.",
"main": "index.ts",
"scripts": {
"vite": "vite",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run server",
"build": "cross-env MODE_ENV=true ./node_modules/.bin/vite build",
"server": "./node_modules/.bin/vite --host",
"prepare": "husky",
"lint": "lint-staged",
"deploy": "gh-pages -d dist",
"download-source": "rm -rf ./corehtml5canvas; git clone https://github.com/corehtml5canvas/code.git ./corehtml5canvas"
},
"keywords": [
"Canvas",
"Graphic",
"2D",
"Game"
],
"engines": {
"node": ">= 12.0.0"
},
"author": {
"name": "iaosee",
"email": "[email protected]",
"url": "https://iaosee.com"
},
"repository": {
"type": "git",
"url": "https://github.com/iaosee/html5-canvas-core.git"
},
"homepage": "https://iaosee.com/html5-canvas-core/",
"bugs": "https://github.com/iaosee/html5-canvas-core/issues",
"license": "ISC",
"dependencies": {
"lil-gui": "^0.20.0",
"stats.js": "^0.17.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"gh-pages": "^6.2.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.11"
},
"lint-staged": {
"src/**/*.ts": [
"./node_modules/.bin/prettier --write"
],
"src/**/*.{css,scss}": [
"./node_modules/.bin/prettier --write"
],
"src/**/*.html": [
"./node_modules/.bin/prettier --write"
]
}
}