-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
58
59
60
61
62
63
64
65
66
{
"name": "releasebot",
"version": "1.0.2",
"description": "AI-powered release automation tool for GitHub Actions",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc && ncc build src/main.ts -o dist --source-map",
"build:watch": "tsc --watch",
"dev": "tsx src/main.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"package": "npm run build && npm run test",
"prepare": "husky"
},
"keywords": [
"github-actions",
"release",
"automation",
"ai",
"semantic-versioning",
"changelog"
],
"author": "Synctree",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@jest/globals": "^30.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"@typescript-eslint/eslint-plugin": "^8.39.0",
"@typescript-eslint/parser": "^8.39.0",
"@vercel/ncc": "^0.38.3",
"eslint": "^9.33.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"lint-staged": "^16.1.5",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"openai": "^5.12.2",
"semver": "^7.7.2"
},
"lint-staged": {
"src/**/*.{ts,js}": [
"eslint --fix",
"prettier --write"
]
}
}