-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.59 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.59 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
{
"name": "leonidas",
"version": "1.0.0",
"description": "GitHub Actions automation tool - Claude Code analyzes issues and implements code",
"repository": {
"type": "git",
"url": "https://github.com/JeremyDev87/leonidas.git"
},
"keywords": [
"github-actions",
"claude-code",
"automation",
"issue-to-pr",
"ai-developer"
],
"bugs": {
"url": "https://github.com/JeremyDev87/leonidas/issues"
},
"homepage": "https://github.com/JeremyDev87/leonidas#readme",
"engines": {
"node": ">=20"
},
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt -t && ncc build src/post_process_cli.ts -o dist/post_process_cli --source-map -t",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.5",
"@vercel/ncc": "^0.38.3",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.54.0",
"vitest": "^2.1.9"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"js-yaml": "^4.1.0"
}
}