forked from cyl19970726/poly-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.07 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.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
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
{
"name": "@catalyst-team/poly-sdk",
"version": "0.5.0",
"private": false,
"license": "MIT",
"description": "TypeScript SDK for Polymarket - prediction markets trading, smart money analysis, and market data",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"packageManager": "pnpm@10.25.0",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"scripts": {
"build": "tsc",
"prepublishOnly": "pnpm run build",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"example:basic": "tsx examples/01-basic-usage.ts",
"example:smart-money": "tsx examples/02-smart-money.ts",
"example:market-analysis": "tsx examples/03-market-analysis.ts",
"example:kline": "tsx examples/04-kline-aggregation.ts",
"example:follow-wallet": "tsx examples/05-follow-wallet-strategy.ts",
"example:services": "tsx examples/06-services-demo.ts",
"example:realtime": "tsx examples/07-realtime-websocket.ts",
"example:trading": "tsx examples/08-trading-orders.ts",
"example:rewards": "tsx examples/09-rewards-tracking.ts",
"example:ctf": "tsx examples/10-ctf-operations.ts",
"example:live-arb": "tsx examples/11-live-arbitrage-scan.ts",
"example:trending-arb": "tsx examples/12-trending-arb-monitor.ts",
"example:arb-service": "tsx examples/13-arbitrage-service.ts"
},
"keywords": [
"polymarket",
"prediction-markets",
"trading",
"crypto",
"defi",
"smart-money"
],
"author": "Catalyst Team",
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@polymarket/clob-client": "^5.1.3",
"@catalyst-team/cache": "^0.2.0",
"@types/ws": "^8.18.1",
"bottleneck": "^2.19.5",
"ethers": "5",
"isomorphic-ws": "^5.0.0",
"ws": "^8.18.3"
},
"devDependencies": {
"tsx": "^4.7.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}