-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.46 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
{
"name": "repopilot",
"version": "0.3.0",
"private": true,
"description": "Auditable repository maintenance AgentTeam built on AgentTeams.",
"license": "Apache-2.0",
"homepage": "https://wellkilo.github.io/RepoPilot/",
"repository": {
"type": "git",
"url": "git+https://github.com/wellkilo/RepoPilot.git"
},
"bugs": {
"url": "https://github.com/wellkilo/RepoPilot/issues"
},
"keywords": [
"agentteams",
"github-automation",
"mcp",
"multi-agent",
"opentelemetry",
"repository-maintenance"
],
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm -r build",
"benchmark:reliability": "node scripts/run-reliability-benchmark.mjs",
"dev": "pnpm --parallel --filter @repopilot/control-plane --filter @repopilot/console dev",
"evaluate": "node scripts/evaluate-proof-bundle.mjs",
"format": "prettier --write .",
"format:check": "prettier --check .",
"glama:build": "node scripts/build-glama-release.mjs",
"glama:verify": "node scripts/verify-glama-release.mjs",
"lint": "eslint .",
"skills:validate": "node scripts/validate-skills.mjs",
"test": "pnpm benchmark:reliability && pnpm skills:validate",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.0.0",
"typescript": "^5.9.0",
"typescript-eslint": "^8.0.0"
}
}