-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 755 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 755 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
{
"name": "atlas",
"version": "0.1.1",
"description": "Solana capital-flow mapper that tracks origin wallets, propagation lag, and sector rotation",
"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",
"wallets",
"propagation",
"capital-flows"
],
"engines": {
"node": ">=20.0.0",
"bun": ">=1.2.0"
}
}