-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "marketcaster",
"version": "0.1.0",
"private": true,
"license": "ISC",
"description": "Open-source prediction-market trading engine for Polymarket US and Kalshi",
"type": "module",
"engines": {
"node": ">=22 <23"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check:overrides": "node scripts/check-runtime-overrides.mjs",
"cycle": "node dist/src/index.js",
"dev": "tsx src/index.ts",
"experiment:market-selection": "node dist/src/experiments/market-selection.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"decimal.js": "10.6.0",
"p-limit": "6.2.0",
"pino": "9.14.0",
"polymarket-us": "0.1.1",
"zod": "4.4.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.20.1",
"eslint": "10.8.0",
"prettier": "3.9.6",
"tsx": "4.23.11",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0"
}
}