-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "sepack",
"version": "0.5.0",
"description": "Simple cli tool for android project. Generate android project base on template kotlin mvvm, debug and install project without Android Studio.",
"main": "dist/app.js",
"scripts": {
"start": "android-sepack",
"restart": "clear && npm run clean && npm run build",
"build": "npm run clean && tsc -p . && npm link",
"clean": "npm uninstall -g sepack && npx rimraf dist",
"patch": "npm run build && npm run patch-update && npm publish",
"minor": "npm run build && npm run minor-update && npm publish",
"mayor": "npm run build && npm run mayor-update && npm publish",
"patch-update": "npm run build && node -e 'require(\"./updater\").patchUpdate()'",
"minor-update": "npm run build && node -e 'require(\"./updater\").minorUpdate()'",
"mayor-update": "npm run build && node -e 'require(\"./updater\").mayorUpdate()'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utsmannn/android-sepack.git"
},
"bin": {
"android-sepack": "dist/app.js",
"sepack": "dist/app.js"
},
"keywords": [
"android",
"template",
"boilerplate",
"android-cli",
"android-tools"
],
"author": "Muhammad Utsman",
"license": "Apache-v2",
"bugs": {
"url": "https://github.com/utsmannn/android-sepack/issues"
},
"homepage": "https://github.com/utsmannn/android-sepack#readme",
"dependencies": {
"@types/boxen": "^3.0.1",
"@types/clui": "^0.3.0",
"@types/figlet": "^1.5.1",
"@types/inquirer": "^7.3.1",
"@types/ora": "^3.2.0",
"@types/shelljs": "^0.8.8",
"@types/yargs": "^16.0.1",
"axios": "^0.21.1",
"boxen": "^5.0.1",
"chalk": "^2.4.2",
"cli-clear": "^1.0.4",
"clui": "^0.3.6",
"figlet": "^1.5.0",
"inquirer": "^8.0.0",
"ora": "^5.4.0",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"yargs": "^17.0.1"
}
}