-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.6 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": "@capawesome/cli",
"version": "1.1.0",
"description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
"scripts": {
"build": "rimraf ./dist && tsc",
"start": "npm run build && node ./dist/index.js",
"lint": "npm run prettier -- --check",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js}\"",
"prepublishOnly": "npm run build",
"release": "commit-and-tag-version"
},
"bin": {
"capawesome": "./dist/index.js"
},
"keywords": [
"capawesome",
"cli",
"capacitor"
],
"author": "Robin Genz <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/capawesome-team/cli.git"
},
"bugs": {
"url": "https://github.com/capawesome-team/cli/issues"
},
"homepage": "https://capawesome.io/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/capawesome-team/"
},
{
"type": "opencollective",
"url": "https://opencollective.com/capawesome"
}
],
"dependencies": {
"@clack/prompts": "0.7.0",
"archiver": "7.0.1",
"axios": "1.7.7",
"citty": "0.1.6",
"consola": "3.2.3",
"form-data": "4.0.1",
"rc9": "2.1.2",
"semver": "7.6.3"
},
"devDependencies": {
"@ionic/prettier-config": "4.0.0",
"@types/archiver": "6.0.3",
"@types/node": "20.11.30",
"@types/semver": "7.5.8",
"commit-and-tag-version": "12.5.0",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"typescript": "5.6.3"
},
"prettier": "@ionic/prettier-config"
}