-
-
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.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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": "claude-coder-action",
"version": "2.1.0",
"private": false,
"description": "A GitHub Action to Process Pull Requests using multiple AI providers (AWS Bedrock, OpenRouter) with intelligent model selection",
"main": "dist/index.js",
"scripts": {
"build": "esbuild index.js --bundle --platform=node --target=node20 --outfile=dist/index.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"patch": "npm --no-git-tag-version version patch",
"minor": "npm --no-git-tag-version version minor",
"major": "npm --no-git-tag-version version major"
},
"repository": "github:EndemicMedia/claudecoder",
"keywords": [
"github-action"
],
"author": "dseeker",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@aws-sdk/client-bedrock-runtime": "3.614.0",
"@octokit/rest": "^19.0.13",
"axios": "^1.7.2",
"ignore": "^5.2.4"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"esbuild": "^0.17.19",
"jest": "^29.7.0",
"semantic-release": "^21.0.5"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/git",
{
"assets": [
"dist/index.js"
],
"message": "build(release): compiled action for ${nextRelease.version}\n\n[skip ci]"
}
],
"@semantic-release/github"
]
}
}