-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 943 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 943 Bytes
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
{
"name": "paw",
"version": "1.0.0",
"type": "module",
"bin": {
"paw": "./bin/paw"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"description": "Paw — Multi-provider AI coding agent for the terminal.",
"scripts": {
"build": "tsc -p tsconfig.json",
"prepare": "npm run build",
"check": "tsc --noEmit -p tsconfig.json",
"dev": "tsx src/index.ts",
"start": "tsx src/index.ts",
"test": "vitest run"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.58.0",
"@google/genai": "^1.29.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.2.3",
"ink": "^6.8.0",
"openai": "^4.80.0",
"picocolors": "^1.1.1",
"react": "^19.2.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@types/react": "^19.2.2",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^4.1.2"
}
}