-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
53 lines (53 loc) · 1.13 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
{
"name": "create-galacean",
"version": "1.1.0",
"description": "",
"main": "lib/index.js",
"types": "types/index.d.ts",
"packageManager": "[email protected]",
"files": [
"lib",
"bin",
"templates"
],
"bin": {
"create-galacean-app": "bin/create-galacean-app.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"dev:vue": "pnpm -C templates/vue dev",
"prepublishOnly": "npm run build",
"release": "bumpp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/galacean/create-galacean-app.git"
},
"keywords": [
"galacean",
"webgl"
],
"authors": [
"husong <[email protected]> (https://github.com/gz65555)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/galacean/create-galacean-app/issues"
},
"homepage": "https://github.com/galacean/create-galacean-app#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^20.10.5",
"bumpp": "^9.2.1",
"typescript": "^5"
},
"dependencies": {
"cac": "^6.7.14",
"chalk": "^4.1.0",
"inquirer": "^7.3.3"
}
}