-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 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
68
69
{
"name": "coder-agent",
"version": "0.1.0",
"private": true,
"description": "Coder Agent — An open-source, enterprise-grade CLI coding agent with multi-provider support, Agent Teams, and a powerful hook system",
"type": "module",
"scripts": {
"dev": "pnpm --recursive run dev",
"build": "pnpm --recursive run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run --dir packages",
"test:integration": "vitest run --dir packages --config vitest.integration.config.ts",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc -b",
"clean": "pnpm --recursive run clean",
"ci": "pnpm lint && pnpm type-check && pnpm test:coverage && pnpm build"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@9.15.4",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.16.0",
"prettier": "^3.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/AgenticMatrix/Coder-Agent"
},
"license": "Apache-2.0",
"keywords": [
"cli",
"coding-agent",
"ai-agent",
"llm",
"anthropic",
"openai",
"deepseek",
"multi-provider",
"agent-teams",
"terminal",
"tui",
"developer-tools",
"code-generation",
"mcp",
"hooks"
],
"author": "Coder Agent Contributors",
"bugs": {
"url": "https://github.com/AgenticMatrix/Coder-Agent/issues"
},
"homepage": "https://github.com/AgenticMatrix/Coder-Agent#readme",
"pnpm": {
"patchedDependencies": {
"ink@7.0.5": "patches/ink@7.0.5.patch"
}
}
}