-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1018 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1018 Bytes
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
{
"name": "surge",
"version": "0.1.1",
"description": "Solana breakout-pressure engine that ranks continuation setups by breadth, depth, and refill quality",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SurgeDetect/Surge.git"
},
"bugs": {
"url": "https://github.com/SurgeDetect/Surge/issues"
},
"homepage": "https://github.com/SurgeDetect/Surge#readme",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "bun run index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsup": "^8.3.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"keywords": [
"solana",
"breakout",
"order-flow",
"volume-spike"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0"
}
}