-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "release-pilot",
"version": "1.0.0",
"private": true,
"type": "module",
"description": "The definitive GitHub Action for semantic versioning, tagging, changelog generation, and releases — powered by Conventional Commits.",
"main": "dist/main.js",
"packageManager": "pnpm@11.21.0",
"engines": {
"node": ">=24"
},
"scripts": {
"build": "node esbuild.config.js",
"test": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint-fix": "biome check . --write && biome format --write .",
"check": "pnpm typecheck && pnpm lint && pnpm test"
},
"keywords": [
"github-action",
"semantic-versioning",
"semver",
"conventional-commits",
"changelog",
"release",
"tagging",
"automation"
],
"author": "Jonas Ranerfors",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"semver": "^7.8.5"
},
"devDependencies": {
"@biomejs/biome": "^2.5.10",
"@types/node": "^26.2.0",
"@types/semver": "^7.8.0",
"@vitest/coverage-v8": "^4.1.11",
"esbuild": "^0.28.2",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}