-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.18 KB
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
72
73
74
{
"name": "@arcadia-screeps/deploy-wizard",
"version": "1.0.3",
"license": "GPL-3.0",
"description": "A CLI for screeps server based on screep-launcher",
"keywords": [
"cli",
"server",
"screeps",
"docker",
"docker-compose"
],
"author": {
"name": "peachest",
"email": "1938913473@qq.com"
},
"homepage": "https://github.com/arcadia-screeps",
"repository": {
"type": "git",
"url": "https://github.com/arcadia-screeps/deploy-wizard"
},
"bugs": "https://github.com/arcadia-screeps/deploy-wizard/issues",
"type": "module",
"files": [
"bin/",
"dist/",
"locales/",
"template/"
],
"bin": {
"screeps-deploy-wizard": "bin/screeps-deploy-wizard.js",
"sdw": "bin/screeps-deploy-wizard.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -cw",
"lint": "eslint ./src"
},
"dependencies": {
"@inquirer/prompts": "^3.3.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"globby": "^14.0.0",
"handlebars": "^4.7.8",
"i18next": "^23.8.2",
"i18next-fs-backend": "^2.3.1",
"json5": "^2.2.3",
"pacote": "^17.0.6",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/fs-extra": "^11.0.4",
"@types/i18next-fs-backend": "^1.1.5",
"@types/node": "^20.11.5",
"@types/pacote": "^11.1.8",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"rollup": "^4.9.6",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-node-externals": "^7.0.1",
"rollup-plugin-typescript2": "^0.36.0",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
}
}