-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.17 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
{
"name": "create-snowpack-canvas",
"version": "1.0.4",
"description": "Setup simple template with snowpack to get started with typescript and full-screen canvas quickly.",
"keywords": [
"starter-kit",
"template",
"cli",
"canvas",
"snowpack",
"typescript"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/create-snowpack-canvas.git"
},
"homepage": "https://github.com/beenotung/create-snowpack-canvas#readme",
"bugs": {
"url": "https://github.com/beenotung/create-snowpack-canvas/issues"
},
"bin": {
"create-snowpack-canvas": "cli.js"
},
"files": [
"template/src",
"template/.gitignore",
"template/.prettierrc",
"template/package.json",
"template/snowpack.config.js",
"template/tsconfig.json"
],
"scripts": {
"test": "tsc --noEmit",
"build": "tsc -p ."
},
"dependencies": {
"npm-init-helper": "^1.3.2"
},
"devDependencies": {
"@types/node": "^17.0.45",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}