-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 943 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 943 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
{
"name": "chorus",
"version": "1.0.1",
"description": "Solana cohort-consensus tracker that separates makers, funds, teams, and traders",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ChorusSignals/Chorus.git"
},
"bugs": {
"url": "https://github.com/ChorusSignals/Chorus/issues"
},
"homepage": "https://github.com/ChorusSignals/Chorus#readme",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "bun run --watch src/index.ts",
"build": "tsup",
"start": "bun run dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"zod": "^3.23.8"
},
"keywords": [
"solana",
"smart-money",
"wallet-consensus",
"cohort-analysis"
],
"devDependencies": {
"@types/bun": "latest",
"tsup": "^8.3.0",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}