-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "musashi-api",
"version": "1.0.0",
"description": "Standalone Musashi API, SDK, and backend services for prediction market intelligence.",
"packageManager": "pnpm@10.17.1",
"scripts": {
"dev": "node --import tsx scripts/local-api-server.ts",
"local:api": "node --import tsx scripts/local-api-server.ts",
"backend:dev": "node server/api-server.mjs",
"test:agent": "node --import tsx scripts/test-agent-api.ts",
"test:agent:local": "MUSASHI_API_BASE_URL=http://127.0.0.1:3000 node --import tsx scripts/test-agent-api.ts",
"typecheck": "tsc --noEmit -p tsconfig.json && tsc --noEmit -p api/tsconfig.json",
"clean": "rm -rf dist .vercel"
},
"keywords": [
"musashi",
"prediction-markets",
"polymarket",
"kalshi",
"sdk",
"api"
],
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^2.97.0",
"@vercel/kv": "^3.0.0",
"@vercel/node": "^3.0.21"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.21.0",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18.0.0"
}
}