forked from JS-DevTools/version-bump-prompt
-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
91 lines (91 loc) · 2.13 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
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": "bumpp",
"version": "9.10.0",
"packageManager": "[email protected]",
"description": "Bump version, commit changes, tag, and push to Git",
"author": {
"name": "James Messinger",
"url": "https://jamesmessinger.com"
},
"license": "MIT",
"homepage": "https://github.com/antfu/bumpp",
"repository": {
"type": "git",
"url": "https://github.com/antfu/bumpp.git"
},
"keywords": [
"version",
"bump",
"npm",
"node",
"bower",
"package",
"git",
"tag",
"push",
"prompt"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"bumpp": "bin/bumpp.js"
},
"files": [
"bin",
"dist"
],
"engines": {
"node": ">=10"
},
"scripts": {
"clean": "rimraf .nyc_output coverage dist",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "tsup src/index.ts src/cli/index.ts --format esm,cjs --dts --clean",
"watch": "npm run build -- --watch src",
"start": "esno src/cli/run.ts",
"test": "vitest",
"upgrade": "npm-check -u && npm audit fix",
"bumpp": "esno src/cli/run.ts",
"prepublishOnly": "npm run clean && npm run build",
"release": "npm run bumpp && npm publish",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"c12": "^2.0.1",
"cac": "^6.7.14",
"escalade": "^3.2.0",
"js-yaml": "^4.1.0",
"jsonc-parser": "^3.3.1",
"package-manager-detector": "^0.2.8",
"prompts": "^2.4.2",
"semver": "^7.6.3",
"tinyexec": "^0.3.2",
"tinyglobby": "^0.2.10"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"args-tokenizer": "^0.3.0",
"eslint": "^9.17.0",
"esno": "^4.8.0",
"log-symbols": "^7.0.0",
"npm-check": "^6.0.1",
"picocolors": "^1.1.1",
"rimraf": "^6.0.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}