-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.85 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.85 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
{
"name": "musashi-extension",
"version": "1.0.0",
"description": "Chrome extension that overlays prediction market odds on Twitter/X",
"packageManager": "pnpm@10.17.1",
"scripts": {
"build": "webpack --mode production",
"typecheck:api": "tsc --noEmit --pretty false --target ES2020 --module commonjs --moduleResolution node --strict --esModuleInterop --resolveJsonModule --allowSyntheticDefaultImports --skipLibCheck --lib ES2020,DOM --types node api/cron/collect-tweets.ts api/feed/stats.ts api/markets/movers.ts api/feed.ts api/health.ts src/api/twitter-client.ts api/lib/market-cache.ts",
"dev": "webpack --mode development --watch",
"clean": "rm -rf dist",
"agent": "node --import tsx cli/index.ts",
"agent:test:api": "node --import tsx scripts/test-agent-api.ts",
"agent:test:api:perf": "MUSASHI_TEST_INCLUDE_PERF=1 node --import tsx scripts/test-agent-api.ts",
"agent:test:api:stress": "MUSASHI_TEST_INCLUDE_STRESS=1 node --import tsx scripts/test-agent-api.ts",
"agent:test:api:full": "MUSASHI_TEST_INCLUDE_PERF=1 MUSASHI_TEST_INCLUDE_STRESS=1 node --import tsx scripts/test-agent-api.ts",
"local:api": "node --import tsx scripts/local-api-server.ts",
"agent:dashboard": "node scripts/agent-dashboard.mjs",
"agent:build": "esbuild cli/index.ts --bundle --platform=node --outfile=dist/agent.js --external:blessed",
"agent:start": "node dist/agent.js",
"matcher:eval:build": "tsc --pretty false --target ES2020 --module commonjs --moduleResolution node --esModuleInterop --outDir .tmp/matcher-eval scripts/evaluate-matcher.ts",
"matcher:eval": "pnpm run matcher:eval:build && node .tmp/matcher-eval/scripts/evaluate-matcher.js --labels scripts/data/matcher-eval-mock-markets.jsonl",
"supabase:test": "node scripts/test-supabase-connection.mjs",
"supabase:smoke": "node scripts/supabase-smoke-test.mjs",
"api:start": "node server/api-server.mjs",
"api:dev": "node server/api-server.mjs"
},
"keywords": [
"chrome-extension",
"prediction-markets",
"kalshi"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/node": "^24.5.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vercel/node": "^3.0.21",
"autoprefixer": "^10.4.19",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"esbuild": "^0.27.3",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.4",
"ts-loader": "^9.5.1",
"tsx": "^4.21.0",
"typescript": "^5.5.2",
"vercel": "^50.37.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@supabase/supabase-js": "^2.97.0",
"@types/blessed": "^0.1.27",
"@vercel/kv": "^3.0.0",
"blessed": "^0.1.81",
"dotenv": "^17.3.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}