-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.83 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@capawesome/cli",
"version": "4.6.0",
"description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
"type": "module",
"scripts": {
"build": "rimraf ./dist && tsc && tsc-alias",
"start": "npm run build && node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"lint": "npm run prettier -- --check",
"fmt": "npm run prettier -- --write",
"prettier": "prettier \"**/*.{css,html,ts,js}\"",
"sentry:releases:new": "sentry-cli releases new capawesome-team-cli@$npm_package_version --org genz-it-solutions-gmbh --project capawesome-team-cli",
"sentry:releases:set-commits": "sentry-cli releases set-commits capawesome-team-cli@$npm_package_version --auto --org genz-it-solutions-gmbh --project capawesome-team-cli --ignore-missing",
"sentry:releases:finalize": "sentry-cli releases finalize capawesome-team-cli@$npm_package_version --org genz-it-solutions-gmbh --project capawesome-team-cli",
"release": "commit-and-tag-version",
"prepublishOnly": "npm run build && npm run sentry:releases:new && npm run sentry:releases:set-commits",
"postpublish": "npm run sentry:releases:finalize"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=20.0.0"
},
"bin": {
"capawesome": "./dist/index.js"
},
"keywords": [
"capawesome",
"cli",
"capacitor"
],
"author": "Robin Genz <mail@robingenz.dev>",
"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",
"@robingenz/zli": "0.2.0",
"@sentry/node": "8.55.0",
"adm-zip": "0.5.16",
"axios": "1.13.5",
"axios-retry": "4.5.0",
"c12": "3.3.3",
"consola": "3.3.0",
"form-data": "4.0.4",
"globby": "16.1.1",
"http-proxy-agent": "7.0.2",
"https-proxy-agent": "7.0.6",
"mime": "4.0.7",
"open": "10.2.0",
"rc9": "2.1.2",
"semver": "7.6.3",
"systeminformation": "5.31.1",
"zod": "4.0.17"
},
"devDependencies": {
"@ionic/prettier-config": "4.0.0",
"@sentry/cli": "2.52.0",
"@types/adm-zip": "0.5.7",
"@types/mime": "3.0.4",
"@types/node": "24.2.1",
"@types/semver": "7.5.8",
"@vitest/ui": "3.2.4",
"commit-and-tag-version": "12.6.1",
"nock": "14.0.10",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"tsc-alias": "1.8.16",
"typescript": "5.6.3",
"vitest": "3.2.4"
},
"prettier": "@ionic/prettier-config"
}