-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.54 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.54 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
67
{
"name": "rsolv-action",
"version": "3.9.13",
"description": "GitHub Action for automating issue fixes with AI",
"main": "src/index.ts",
"type": "module",
"engines": {
"node": ">=22.0.0",
"bun": ">=1.2.0"
},
"scripts": {
"start": "bun run src/index.ts",
"test": "./run-tests.sh",
"test:watch": "./run-tests.sh --watch",
"test:ui": "vitest --ui",
"test:coverage": "./run-tests.sh --coverage",
"test:memory": "./run-tests.sh --memory-safe",
"test:live": "./run-tests.sh --live-api",
"test:full": "./run-tests.sh --e2e --live-api --coverage",
"test:ci": "./run-tests.sh --memory-safe --json",
"test:json": "./run-tests.sh --json",
"test:security": "vitest run src/security",
"test:ai": "vitest run src/ai",
"test:validation": "vitest run src/validation",
"lint": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"build": "bun build src/index.ts --outdir dist --minify --target node && cp src/security/detector-worker.js dist/detector-worker.js",
"publish": "gh release create v0.1.0 --title 'Initial Release' --notes 'First public release of RSOLV GitHub Action'",
"dev-debug": "bun run dev-debug-environment.ts",
"test:e2e": "RUN_E2E=true ./run-tests.sh --e2e",
"test:e2e:pattern-api": "RUN_E2E=true vitest run src/__tests__/pattern-api-e2e.test.ts",
"test:e2e:enhanced-format": "RUN_E2E=true vitest run tests/e2e/pattern-api-enhanced-format.test.ts",
"test:e2e:ruby": "RUN_E2E=true vitest run tests/e2e/railsgoat-ruby-rspec.test.ts",
"test:integration": "vitest run src/modes/__tests__/test-integration-client.test.ts src/modes/__tests__/validation-mode-test-integration.test.ts"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@anthropic-ai/claude-code": "^2.1.84",
"@babel/parser": "^7.27.5",
"@babel/traverse": "^7.27.4",
"@babel/types": "^7.27.6",
"@octokit/rest": "^21.1.1",
"@types/uuid": "^10.0.0",
"glob": "^12.0.0",
"js-yaml": "^4.1.1",
"safe-regex2": "^5.0.0",
"uuid": "^14.0.0",
"zod": "^3.25.26"
},
"devDependencies": {
"@types/babel__traverse": "^7.20.7",
"@types/bun": "^1.2.20",
"@types/js-yaml": "^4.0.9",
"@types/nock": "^11.1.0",
"@types/node": "^20.17.50",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/ui": "^3.2.4",
"bun-types": "latest",
"eslint": "^8.57.1",
"happy-dom": "^20.8.4",
"msw": "^2.10.5",
"nock": "^14.0.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}