-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "gofer",
"version": "1.0.0",
"description": "Gofer is an AI agent that lives on your PC to help when you're away",
"homepage": "https://github.com/jleuth/gofer#readme",
"bugs": {
"url": "https://github.com/jleuth/gofer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jleuth/gofer.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"bin": {
"gofer": "./bin/gofer.js"
},
"scripts": {
"build": "tsc && cp -r src/prompts dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"providers": "tsx src/provider-cli.ts",
"gofer": "tsx src/repl.tsx",
"start": "tsx src/daemon.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"@ai-sdk/google": "^1.2.22",
"@ai-sdk/mistral": "^1.2.8",
"@ai-sdk/openai": "^1.3.23",
"@ai-sdk/togetherai": "^0.2.15",
"@ai-sdk/xai": "^1.2.17",
"@anthropic-ai/sdk": "^0.54.0",
"@openai/agents": "^0.0.10",
"@openai/agents-extensions": "^0.0.10",
"@openrouter/ai-sdk-provider": "^0.7.2",
"@types/express": "^5.0.3",
"@types/node": "^24.0.3",
"@types/pngjs": "^6.0.5",
"chokidar": "^4.0.3",
"commander": "^14.0.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"ink": "^6.0.1",
"node-telegram-bot-api": "^0.66.0",
"ollama-ai-provider": "^1.2.0",
"openai": "^5.7.0",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"react": "^19.1.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"devDependencies": {
"@types/node-telegram-bot-api": "^0.64.9",
"@types/react": "^19.1.8",
"typescript-transform-paths": "^3.5.5"
}
}