-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "kokateam-deploy",
"version": "1.0.36",
"description": "Deploy applications to koka team static with one simple command.",
"license": "MIT",
"main": "index.js",
"homepage": "https://github.com/LukasAndreano/kokateam-deploy",
"bugs": "https://github.com/LukasAndreano/kokateam-deploy/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/LukasAndreano/kokateam-deploy.git"
},
"keywords": [
"kokateam",
"koka team",
"deploy",
"vk mini apps",
"vkma",
"react hosting"
],
"author": "Nikita Balin <n.balin@koka.team> (https://koka.team)",
"scripts": {
"dev": "tsc -w",
"build": "npm run prettify && tsc --build --clean && tsc && mv ./dist/bin/kokateam-deploy.js ./dist/bin/kokateam-deploy && chmod +x ./dist/bin/kokateam-deploy",
"prettify": "prettier --write .",
"deploy": "./bin/kokateam-deploy",
"release": "npm run build && cp package.json dist && cp README.md dist && cp -r bin dist && npm publish ./dist"
},
"bin": {
"kokateam-deploy": "bin/kokateam-deploy"
},
"engines": {
"node": ">=8.10"
},
"devDependencies": {
"@types/configstore": "^6.0.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/node": "^18.16.3",
"@types/prompts": "^2.4.4",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
},
"dependencies": {
"axios": "^1.7.5",
"chalk": "^3.0.0",
"configstore": "^5.0.0",
"form-data": "^4.0.0",
"fs": "^0.0.1-security",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"prompts": "^2.4.2",
"require-module": "^0.1.0",
"zip-a-folder": "^1.1.5"
}
}