-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.71 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
{
"name": "bump-package",
"description": "Bump package version based on keywords in head commit",
"version": "2.8.36",
"type": "module",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jpb06/bump-package.git"
},
"author": "jpb06 <jpb.06@outlook.com>",
"license": "MIT",
"engines": {
"node": "24.x"
},
"scripts": {
"update-deps": "bunx npm-check-updates --root --format group -i",
"clean-dist": "rm -rf ./dist && rm -rf ./lib",
"build": "bun clean-dist && esbuild ./src/main.ts --bundle --tsconfig=tsconfig.prod.json --minify --sourcemap --outfile=./lib/main.js --platform=node",
"postbuild": "echo '{\"type\": \"commonjs\"}' > lib/package.json",
"type-check": "tsc --noEmit",
"check": "biome check .",
"format": "biome format --write .",
"format-ci": "biome format .",
"lint": "biome lint .",
"lint-fix": "biome lint --write .",
"test": "vitest",
"test-ci": "vitest --coverage --run",
"test-dev": "vitest --coverage",
"test-coverage": "vitest run --coverage",
"run-local": "bun run build && act -P ubuntu-latest=-self-hosted --job version-bump",
"sync-icons": "bun generateReadmeIcons -h 50"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/exec": "3.0.0",
"@actions/github": "9.0.0",
"comment-json": "4.6.2",
"effect": "3.19.19",
"effect-errors": "1.10.23",
"effect-github-actions-layer": "1.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "20.4.4",
"@commitlint/config-conventional": "20.4.4",
"@types/node": "25.5.0",
"@vitest/coverage-v8": "4.1.0",
"esbuild": "0.27.4",
"readme-package-icons": "1.2.2",
"typescript": "5.9.3",
"vitest": "4.1.0",
"vitest-mock-extended": "3.1.0"
}
}