-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.39 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.39 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
{
"name": "@dpaulos6/versify",
"version": "3.0.3",
"description": "A CLI tool for automating version bumps",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dpaulos6/versify.git"
},
"homepage": "https://github.com/dpaulos6/versify#readme",
"bugs": {
"url": "https://github.com/dpaulos6/versify/issues"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"cli": "node dist/cli.js",
"format": "biome format . --write",
"preinstall": "tsc"
},
"bin": {
"versify": "bin/versify",
"version": "bin/versify",
"autover": "bin/versify"
},
"keywords": [
"cli",
"versioning",
"semver",
"bump",
"automation",
"git",
"release",
"npm"
],
"author": "dpaulos6",
"license": "MIT",
"contributors": ["dpaulos6"],
"dependencies": {
"@types/node": "^22.10.5",
"@types/semver": "^7.5.8",
"chalk": "^4.0.0",
"commander": "^13.0.0",
"inquirer": "^12.3.2",
"ora": "5.4.1",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/commander": "^2.12.5",
"@types/inquirer": "^9.0.7",
"ultracite": "4.1.15"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}