|
4 | 4 | "version": "9.11.1",
|
5 | 5 | "packageManager": "[email protected]",
|
6 | 6 | "description": "Bump version, commit changes, tag, and push to Git",
|
7 |
| - "author": { |
8 |
| - "name": "James Messinger", |
9 |
| - "url": "https://jamesmessinger.com" |
10 |
| - }, |
| 7 | + "authors": [ |
| 8 | + { |
| 9 | + "name": "Anthony Fu", |
| 10 | + "url": "https://antfu.me" |
| 11 | + }, |
| 12 | + { |
| 13 | + "name": "James Messinger", |
| 14 | + "url": "https://jamesmessinger.com" |
| 15 | + } |
| 16 | + ], |
11 | 17 | "license": "MIT",
|
12 |
| - "homepage": "https://github.com/antfu/bumpp", |
| 18 | + "homepage": "https://github.com/antfu-collective/bumpp", |
13 | 19 | "repository": {
|
14 | 20 | "type": "git",
|
15 |
| - "url": "https://github.com/antfu/bumpp.git" |
| 21 | + "url": "https://github.com/antfu-collective/bumpp.git" |
16 | 22 | },
|
17 | 23 | "keywords": [
|
18 | 24 | "version",
|
|
29 | 35 | "exports": {
|
30 | 36 | ".": {
|
31 | 37 | "types": "./dist/index.d.ts",
|
32 |
| - "import": "./dist/index.js", |
33 |
| - "require": "./dist/index.cjs" |
| 38 | + "default": "./dist/index.mjs" |
34 | 39 | }
|
35 | 40 | },
|
36 |
| - "main": "dist/index.js", |
37 |
| - "module": "dist/index.js", |
38 |
| - "types": "dist/index.d.ts", |
| 41 | + "main": "dist/index.mjs", |
| 42 | + "module": "dist/index.mjs", |
| 43 | + "types": "dist/index.d.mts", |
39 | 44 | "bin": {
|
40 |
| - "bumpp": "bin/bumpp.js" |
| 45 | + "bumpp": "bin/bumpp.mjs" |
41 | 46 | },
|
42 | 47 | "files": [
|
43 | 48 | "bin",
|
44 | 49 | "dist"
|
45 | 50 | ],
|
46 | 51 | "engines": {
|
47 |
| - "node": ">=10" |
| 52 | + "node": ">=18" |
48 | 53 | },
|
49 | 54 | "scripts": {
|
50 |
| - "clean": "rimraf .nyc_output coverage dist", |
51 | 55 | "lint": "eslint .",
|
52 |
| - "lint:fix": "eslint --fix .", |
53 |
| - "build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts --clean", |
54 |
| - "watch": "npm run build -- --watch src", |
| 56 | + "build": "unbuild", |
| 57 | + "stub": "unbuild --stub", |
55 | 58 | "start": "esno src/cli/run.ts",
|
56 | 59 | "test": "vitest",
|
57 |
| - "upgrade": "npm-check -u && npm audit fix", |
58 | 60 | "bumpp": "esno src/cli/run.ts",
|
59 |
| - "prepublishOnly": "npm run clean && npm run build", |
60 |
| - "release": "npm run bumpp && npm publish", |
| 61 | + "prepublishOnly": "pnpm run build", |
| 62 | + "release": "pnpm run bumpp && pnpm publish", |
61 | 63 | "typecheck": "tsc --noEmit"
|
62 | 64 | },
|
63 | 65 | "dependencies": {
|
|
69 | 71 | "package-manager-detector": "^0.2.8",
|
70 | 72 | "prompts": "^2.4.2",
|
71 | 73 | "semver": "^7.6.3",
|
72 |
| - "tiny-conventional-commits-parser": "^0.0.1", |
73 | 74 | "tinyexec": "^0.3.2",
|
74 | 75 | "tinyglobby": "^0.2.10"
|
75 | 76 | },
|
|
83 | 84 | "eslint": "^9.19.0",
|
84 | 85 | "esno": "^4.8.0",
|
85 | 86 | "log-symbols": "^7.0.0",
|
86 |
| - "npm-check": "^6.0.1", |
87 | 87 | "picocolors": "^1.1.1",
|
88 | 88 | "rimraf": "^6.0.1",
|
89 |
| - "tsup": "^8.3.5", |
| 89 | + "tiny-conventional-commits-parser": "^0.0.1", |
90 | 90 | "typescript": "^5.7.3",
|
| 91 | + "unbuild": "^3.3.1", |
91 | 92 | "vitest": "^3.0.4"
|
92 | 93 | }
|
93 | 94 | }
|
0 commit comments