-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
56
57
{
"name": "release-pilot",
"version": "0.0.0",
"description": "Framework-agnostic release automation GitHub Action with multi-package support",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "bun run typecheck && bun run esbuild.config.js",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "biome lint src tests",
"lint:fix": "biome lint --write src tests",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check --write .",
"typecheck": "tsc --noEmit",
"all": "bun run check && bun run typecheck && bun test && bun run build"
},
"packageManager": "bun@1.3.6",
"repository": {
"type": "git",
"url": "https://github.com/a-line-services/release-pilot"
},
"keywords": [
"github-action",
"release",
"automation",
"versioning",
"ci-cd",
"npm",
"cargo",
"python",
"docker"
],
"author": "A-Line Services",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@arrirpc/schema": "^0.81.1",
"semver": "^7.7.1",
"yaml": "^2.7.1"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "^1.3.8",
"@types/node": "^22.15.3",
"@types/semver": "^7.7.0",
"esbuild": "^0.25.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}