-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.55 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
{
"name": "pair-code",
"version": "0.2.2",
"description": "Terminal edition of The Pair: two AI coding agents collaborate on your code through the Claude Agent SDK",
"type": "module",
"license": "Apache-2.0",
"keywords": [
"ai",
"ai-agents",
"ai-code-review",
"anthropic-compatible",
"pair-programming",
"cli",
"coding-agent",
"dual-agent",
"multi-agent",
"code-review",
"automation",
"the-pair",
"terminal",
"claude-agent-sdk"
],
"author": {
"name": "timwuhaotian",
"url": "https://github.com/timwuhaotian"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timwuhaotian/pair-code.git"
},
"homepage": "https://github.com/timwuhaotian/pair-code#readme",
"bugs": {
"url": "https://github.com/timwuhaotian/pair-code/issues"
},
"bin": {
"pair-code": "./dist/index.js",
"pair": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "tsup && node dist/index.js",
"lint": "eslint src",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.185",
"ink": "^7.1.0",
"react": "^19.2.7"
},
"devDependencies": {
"@types/node": "^26.0.0",
"@types/react": "^19.2.17",
"eslint": "^10.5.0",
"ink-testing-library": "^4.0.0",
"tsup": "^8.4.0",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1"
}
}