-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "@capawesome/capver",
"version": "0.1.2",
"description": "CLI for managing versions in a Capacitor project across multiple platforms.",
"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}\"",
"release": "commit-and-tag-version",
"prepublishOnly": "npm run build"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=18.0.0"
},
"bin": {
"capver": "./dist/index.js"
},
"keywords": [
"capawesome",
"cli",
"capacitor",
"ionic",
"capver"
],
"author": "Robin Genz <mail@robingenz.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/capawesome-team/capver.git"
},
"bugs": {
"url": "https://github.com/capawesome-team/capver/issues"
},
"homepage": "https://capawesome.io/",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/capawesome-team/"
},
{
"type": "opencollective",
"url": "https://opencollective.com/capawesome"
}
],
"dependencies": {
"@robingenz/zli": "0.2.0",
"@trapezedev/project": "7.1.3",
"consola": "3.3.0",
"jiti": "2.6.1",
"systeminformation": "5.31.3",
"zod": "4.0.17"
},
"devDependencies": {
"@ionic/prettier-config": "4.0.0",
"@types/node": "24.2.1",
"@vitest/ui": "4.0.18",
"commit-and-tag-version": "12.6.1",
"prettier": "3.3.3",
"rimraf": "6.1.3",
"tsc-alias": "1.8.16",
"typescript": "5.6.3",
"vitest": "4.0.18"
},
"prettier": "@ionic/prettier-config"
}