-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.42 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.42 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@blockrun/franklin",
"version": "3.40.0",
"description": "Franklin Agent — The AI agent with a wallet. Spends USDC autonomously to get real work done. Pay per action, no subscriptions.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./plugin-sdk": {
"types": "./dist/plugin-sdk/index.d.ts",
"default": "./dist/plugin-sdk/index.js"
},
"./wallet": {
"types": "./dist/wallet/index.d.ts",
"default": "./dist/wallet/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"franklin": "dist/index.js"
},
"files": [
"dist",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/copy-plugin-assets.mjs",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "npm run build && node --test --test-concurrency=4 --test-reporter=spec test/local.mjs test/skills.local.mjs test/repair.mjs test/model-resolver.mjs test/exa.local.mjs test/audit-batch.local.mjs test/polymarket.local.mjs test/market.local.mjs test/hooks.local.mjs test/scheduler.local.mjs test/trade-plan.local.mjs test/goal.local.mjs test/memory.local.mjs test/agent-host.local.mjs",
"test:e2e": "npm run build && node --test --test-reporter=spec test/e2e.mjs",
"e2e:polymarket:readonly": "npm run build && node scripts/polymarket-e2e-readonly.mjs",
"test:free-models": "npm run build && node --test --test-reporter=spec test/free-model-matrix.mjs",
"test:all": "npm run test && npm run test:e2e",
"test:watch": "node --test --watch test/local.mjs test/skills.local.mjs test/exa.local.mjs test/audit-batch.local.mjs",
"test:e2e:watch": "node --test --watch test/e2e.mjs"
},
"keywords": [
"franklin",
"autonomous-economic-agent",
"ai-agent",
"wallet-native",
"agent-with-wallet",
"x402",
"usdc",
"pay-per-action",
"multi-model",
"ai-marketing",
"ai-trading",
"crypto-native",
"blockrun"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/BlockRunAI/Franklin.git"
},
"bugs": {
"url": "https://github.com/BlockRunAI/Franklin/issues"
},
"homepage": "https://Franklin.run",
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"@blockrun/llm": "^3.13.1",
"@blockrun/router-core": "https://codeload.github.com/BlockRunAI/router-core/tar.gz/6a790ebec60161825bbc8c4093fd221006b4e5fb",
"@colbymchenry/codegraph": "^1.5.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@polymarket/builder-relayer-client": "^0.0.10",
"@polymarket/builder-signing-sdk": "1.0.0",
"@polymarket/clob-client-v2": "1.1.0",
"@slack/bolt": "^5.0.0",
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"@types/react": "^19.2.14",
"axios": "^1.18.1",
"bs58": "^6.0.0",
"chalk": "^5.4.0",
"commander": "^15.0.0",
"https-proxy-agent": "^9.1.0",
"ink": "^7.1.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"playwright-core": "^1.49.1",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"sharp": "^0.35.3",
"viem": "^2.48.1",
"ws": "^8.21.1"
},
"devDependencies": {
"@types/node": "^26.1.1",
"@types/qrcode": "^1.5.6",
"@types/ws": "^8.18.1",
"typescript": "^7.0.2"
},
"overrides": {
"ws@>=8.0.0 <=8.20.1": "^8.21.1",
"@polymarket/builder-signing-sdk": "1.0.0"
}
}