forked from yushimatenjin/playcanvas-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.08 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
65
66
67
68
69
70
71
{
"name": "playcanvas-tools",
"description": "The PlayCanvas Command Line Tools.",
"version": "0.6.1",
"author": "yushimatenjin <example@example.com>",
"bin": {
"playcanvas-cli": "built/bin/playcanvas-cli.js"
},
"bugs": {
"url": "https://github.com/yushimatenjin/playcanvas-cli/issues"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"extract-zip": "^2.0.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.1.0",
"meow": "^6.1.0",
"playcanvas-node": "1.4.9",
"progress": "^2.0.3"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/extract-zip": "^1.6.2",
"@types/fs-extra": "^9.0.1",
"@types/inquirer": "^6.5.0",
"@types/meow": "^5.0.0",
"@types/node": "^14.0.13",
"@types/playcanvas": "^1.23.0",
"@types/progress": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"playcanvas": "latest",
"prettier": "^2.0.5",
"prettier-eslint": "^11.0.0",
"ts-node-dev": "^1.0.0-pre.44",
"typedoc": "^0.17.7",
"typescript": "^3.9.5"
},
"files": [
"built",
"scripts",
"bin",
"template"
],
"homepage": "https://yushimatenjin.github.io/playcanvas-cli/",
"keywords": [
"REST API",
"deploy",
"playcanvas"
],
"license": "MIT",
"main": "built/bin/playcanvas-cli.js",
"repository": "git@github.com:yushimatenjin/playcanvas-cli.git",
"scripts": {
"build": "yarn copy-template && tsc --project .",
"build:doc": "typedoc && touch docs/.nojekyll",
"copy-template": "rm -rf built && mkdir built && cp -R src/template/ built/template",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "yarn build",
"start": "yarn copy-template && tsc --project . && node ./built/bin/playcanvas-cli.js",
"start:init": "yarn start init"
}
}