forked from galacean/create-galacean-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.01 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
{
"name": "@oasis-engine/create-oasis-app",
"version": "0.4.1",
"description": "",
"main": "lib/index.js",
"types": "types/index.d.ts",
"files": [
"lib",
"bin",
"templates"
],
"bin": {
"create-oasis-app": "bin/create-oasis-app.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oasis-engine/create-oasis-app.git"
},
"keywords": [
"oasis"
],
"authors": [
"husong <[email protected]> (https://github.com/gz65555)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/oasis-engine/create-oasis-app/issues"
},
"homepage": "https://github.com/oasis-engine/create-oasis-app#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/node": "^14.14.24",
"typescript": "^4.1.3"
},
"dependencies": {
"cac": "^6.7.1",
"chalk": "^4.1.0",
"inquirer": "^7.3.3"
}
}