-
-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.08 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.08 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
92
93
94
{
"name": "bumpp",
"type": "module",
"version": "10.4.1",
"packageManager": "pnpm@10.32.1",
"description": "Bump version, commit changes, tag, and push to Git",
"authors": [
{
"name": "Anthony Fu",
"url": "https://antfu.me"
},
{
"name": "James Messinger",
"url": "https://jamesmessinger.com"
}
],
"license": "MIT",
"homepage": "https://github.com/antfu-collective/bumpp",
"repository": {
"type": "git",
"url": "https://github.com/antfu-collective/bumpp.git"
},
"keywords": [
"version",
"bump",
"npm",
"node",
"bower",
"package",
"git",
"tag",
"push",
"prompt"
],
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"types": "dist/index.d.mts",
"bin": {
"bumpp": "bin/bumpp.mjs"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"lint": "eslint .",
"build": "tsdown",
"start": "tsx src/cli/run.ts",
"test": "vitest",
"bumpp": "tsx src/cli/run.ts",
"prepublishOnly": "pnpm run build",
"release": "pnpm run bumpp",
"typecheck": "tsgo --noEmit"
},
"inlinedDependencies": {
"kleur": "3.0.3",
"prompts": "2.4.2",
"sisteransi": "1.0.5",
"tiny-conventional-commits-parser": "0.1.0"
},
"dependencies": {
"args-tokenizer": "^0.3.0",
"cac": "^7.0.0",
"jsonc-parser": "^3.3.1",
"package-manager-detector": "^1.6.0",
"semver": "^7.7.4",
"tinyexec": "^1.0.4",
"tinyglobby": "^0.2.15",
"unconfig": "^7.5.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@antfu/eslint-config": "^7.7.2",
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"@typescript/native-preview": "7.0.0-dev.20260313.1",
"baseline-browser-mapping": "^2.10.7",
"eslint": "^10.0.3",
"premove": "^4.0.0",
"prompts": "^2.4.2",
"tiny-conventional-commits-parser": "^0.1.0",
"tsdown": "^0.21.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}