@enke.dev/bumper 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +137 -0
- package/dist/cli.mjs +2924 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@enke.dev/bumper",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "MIT",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"registry": "https://registry.npmjs.org",
|
|
7
|
+
"access": "public"
|
|
8
|
+
},
|
|
9
|
+
"description": "Central, feature-based repo updater: bumps Node/deps/actions across node, pnpm, npm and bun repos.",
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "David Enke",
|
|
12
|
+
"email": "david@enke.dev"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/enke-dev/bumper.git"
|
|
17
|
+
},
|
|
18
|
+
"type": "module",
|
|
19
|
+
"bin": {
|
|
20
|
+
"bmpr": "./dist/cli.mjs",
|
|
21
|
+
"bumper": "./dist/cli.mjs"
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=22"
|
|
28
|
+
},
|
|
29
|
+
"scripts": {
|
|
30
|
+
"prepare": "bun run build",
|
|
31
|
+
"check": "tsgo --noEmit",
|
|
32
|
+
"lint": "run-p lint:*",
|
|
33
|
+
"lint:eslint": "bun --bun eslint --config eslint.config.ts",
|
|
34
|
+
"lint:prettier": "bun --bun prettier --config prettier.config.ts --check .",
|
|
35
|
+
"format": "run-p format:*",
|
|
36
|
+
"format:eslint": "bun --bun eslint --config eslint.config.ts --fix",
|
|
37
|
+
"format:prettier": "bun --bun prettier --config prettier.config.ts --write .",
|
|
38
|
+
"test": "run-p -c test:*",
|
|
39
|
+
"test:bun": "bun test --reporter=junit --reporter-outfile=reports/junit.bun.xml",
|
|
40
|
+
"test:node": "node --import tsx --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=junit --test-reporter-destination=reports/junit.node.xml \"src/**/*.spec.ts\"",
|
|
41
|
+
"dev": "bun run --bun src/cli.ts",
|
|
42
|
+
"build": "bun build ./src/cli.ts --target=node --outfile dist/cli.mjs"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@enke.dev/lint": "0.13.1",
|
|
46
|
+
"@tsconfig/strictest": "2.0.8",
|
|
47
|
+
"@types/bun": "1.3.14",
|
|
48
|
+
"@types/semver": "7.7.1",
|
|
49
|
+
"@typescript/native-preview": "7.0.0-dev.20260707.2",
|
|
50
|
+
"eslint": "10.7.0",
|
|
51
|
+
"jiti": "2.7.0",
|
|
52
|
+
"npm-run-all2": "9.0.2",
|
|
53
|
+
"prettier": "3.9.5",
|
|
54
|
+
"tsx": "4.23.1",
|
|
55
|
+
"typescript": "6.0.3"
|
|
56
|
+
},
|
|
57
|
+
"dependencies": {
|
|
58
|
+
"semver": "^7.8.5"
|
|
59
|
+
}
|
|
60
|
+
}
|