-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.6 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
{
"name": "@alango/dr-manhattan",
"packageManager": "pnpm@11.3.0",
"version": "0.1.0",
"description": "CCXT-style unified API for prediction markets",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"keywords": [
"prediction-markets",
"polymarket",
"opinion",
"limitless",
"trading",
"api",
"ccxt"
],
"author": "gtg7784",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gtg7784/dr-manhattan-ts.git"
},
"bugs": {
"url": "https://github.com/gtg7784/dr-manhattan-ts/issues"
},
"homepage": "https://github.com/gtg7784/dr-manhattan-ts#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@polymarket/clob-client": "^5.1.2",
"@polymarket/order-utils": "^3.0.1",
"ethers": "^6.0.0",
"pino": "^10.0.0",
"pino-pretty": "^13.0.0",
"socket.io-client": "^4.8.1",
"viem": "^2.49.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/node": "^24.0.0",
"@types/ws": "^8.5.13",
"tsup": "^8.3.5",
"typescript": "^6.0.0",
"vitest": "^4.0.16"
}
}