gen-pr 2.11.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +143 -0
- package/bin/gen-pr.js +3 -0
- package/dist/action.js +5 -0
- package/dist/cli.js +33 -0
- package/dist/main-fB3_cOIr.js +2 -0
- package/package.json +65 -0
package/package.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "gen-pr",
|
|
3
|
+
"version": "2.11.7",
|
|
4
|
+
"repository": "github:WillBooster/gen-pr",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "WillBooster Inc.",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"bin": "bin/gen-pr.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"bin/gen-pr.js",
|
|
11
|
+
"dist/"
|
|
12
|
+
],
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "build-ts app --input src/action.ts --input src/cli.ts",
|
|
15
|
+
"check-all-for-ai": "bun run check-for-ai && bun run test --silent",
|
|
16
|
+
"check-for-ai": "bun install > /dev/null && bun run cleanup && bun run typecheck",
|
|
17
|
+
"cleanup": "bun --bun wb lint --fix --format",
|
|
18
|
+
"format": "bun --bun wb lint --format",
|
|
19
|
+
"lint": "bun --bun wb lint",
|
|
20
|
+
"lint-fix": "bun --bun wb lint --fix",
|
|
21
|
+
"prepare": "lefthook install || true",
|
|
22
|
+
"release": "bun semantic-release && git tag -f v2 main && git push origin v2 --force",
|
|
23
|
+
"start": "bun --env-file=.env src/cli.ts",
|
|
24
|
+
"test": "bun wb test",
|
|
25
|
+
"test-local": "bun --env-file=.env test test/unit-local",
|
|
26
|
+
"typecheck": "bun --bun wb typecheck"
|
|
27
|
+
},
|
|
28
|
+
"prettier": "@willbooster/prettier-config",
|
|
29
|
+
"dependencies": {},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@actions/core": "1.11.1",
|
|
32
|
+
"@ai-sdk/amazon-bedrock": "3.0.0-beta.3",
|
|
33
|
+
"@ai-sdk/anthropic": "2.0.0-beta.3",
|
|
34
|
+
"@ai-sdk/azure": "2.0.0-beta.5",
|
|
35
|
+
"@ai-sdk/google": "2.0.0-beta.6",
|
|
36
|
+
"@ai-sdk/google-vertex": "3.0.0-beta.6",
|
|
37
|
+
"@ai-sdk/openai": "2.0.0-beta.5",
|
|
38
|
+
"@biomejs/biome": "2.1.1",
|
|
39
|
+
"@openrouter/ai-sdk-provider": "0.7.2",
|
|
40
|
+
"@types/bun": "1.2.18",
|
|
41
|
+
"@types/micromatch": "4.0.9",
|
|
42
|
+
"@types/yargs": "17.0.33",
|
|
43
|
+
"@willbooster/biome-config": "3.2.0",
|
|
44
|
+
"@willbooster/prettier-config": "10.2.0",
|
|
45
|
+
"@willbooster/wb": "9.0.1",
|
|
46
|
+
"ai": "5.0.0-beta.7",
|
|
47
|
+
"ai-v4": "npm:ai@4.3.16",
|
|
48
|
+
"ansis": "4.1.0",
|
|
49
|
+
"build-ts": "15.0.11",
|
|
50
|
+
"conventional-changelog-conventionalcommits": "9.0.0",
|
|
51
|
+
"dotenv": "17.0.1",
|
|
52
|
+
"lefthook": "1.12.1",
|
|
53
|
+
"ollama-ai-provider-v2": "0.0.8",
|
|
54
|
+
"prettier": "3.6.2",
|
|
55
|
+
"prettier-plugin-java": "2.7.1",
|
|
56
|
+
"semantic-release": "24.2.6",
|
|
57
|
+
"sort-package-json": "3.4.0",
|
|
58
|
+
"typescript": "5.8.3",
|
|
59
|
+
"yaml": "2.8.0",
|
|
60
|
+
"yargs": "18.0.0"
|
|
61
|
+
},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=22"
|
|
64
|
+
}
|
|
65
|
+
}
|