-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 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
63
64
{
"name": "seinjs-cli",
"version": "1.2.1",
"description": "Command tools for Sein.js.",
"main": "index.js",
"scripts": {
"dev": "export NODE_ENV=development && ./node_modules/.bin/tsc && node ./index.js",
"build": "./node_modules/.bin/tsc",
"prepublish": "npm run build"
},
"bin": {
"sein": "./index.js"
},
"keywords": [
"Game engine",
"Sein.js",
"SeinJS",
"LICENCE"
],
"repository": {
"type": "git",
"url": "[email protected]:SeinJS/seinjs-cli.git"
},
"authors": [
{
"name": "Tianyu Dai (dtysky)",
"email": "[email protected]"
}
],
"license": "MIT",
"files": [
"index.js",
"config.js",
"templates",
"commands/**/*.js",
"LICENCE",
"README.md"
],
"bugs": {
"url": "http://github.com/SeinJS/seinjs-cli/issues"
},
"homepage": "http://github.com/SeinJS/seinjs-cli#readme",
"devDependencies": {
"@types/inquirer": "^0.0.41",
"@types/node": "^12.7.3",
"@types/react": "^16.7.22",
"@types/react-dom": "^16.0.11",
"@types/vue": "^2.0.0",
"@types/yargs": "^11.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"seinjs": "^0.9.0",
"seinjs-audio": "^0.8.1",
"seinjs-gui": "^0.8.7",
"typescript": "^3.2.4"
},
"dependencies": {
"inquirer": "^5.2.0",
"recursive-copy": "^2.0.9",
"remote-origin-url": "^1.0.0",
"through2": "^2.0.3",
"yargs": "^11.0.0"
}
}