-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.78 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.78 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
{
"name": "freeturtle",
"version": "0.1.54",
"description": "An open-source framework for deploying autonomous AI CEOs that run onchain businesses.",
"type": "module",
"main": "dist/bin/freeturtle.js",
"bin": {
"freeturtle": "dist/bin/freeturtle.js"
},
"files": [
"dist/bin",
"dist/src",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "node -e \"const v=require('./package.json').version; require('fs').writeFileSync('src/version.ts', '// Auto-generated by prebuild script — do not edit manually\\nexport const VERSION = \\\"'+v+'\\\";\\n')\"",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"ai",
"agent",
"ceo",
"onchain",
"farcaster",
"autonomous"
],
"author": "",
"license": "Apache-2.0",
"packageManager": "pnpm@10.29.3",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.3",
"@types/pg": "^8.18.0",
"@types/qrcode-terminal": "^0.12.2",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@clack/prompts": "^1.1.0",
"@coinbase/cdp-sdk": "^1.45.0",
"@farcaster/hub-nodejs": "^0.15.10",
"@googleapis/gmail": "^16.1.1",
"@octokit/rest": "^22.0.1",
"commander": "^14.0.3",
"croner": "^10.0.1",
"dotenv": "^17.3.1",
"google-auth-library": "^10.6.1",
"grammy": "^1.41.1",
"openai": "^6.25.0",
"pg": "^8.19.0",
"qrcode-terminal": "^0.12.0",
"viem": "^2.46.3",
"ws": "^8.19.0"
}
}