-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (33 loc) · 868 Bytes
/
package.json
File metadata and controls
34 lines (33 loc) · 868 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
{
"name": "solana-ohlc-candlestick-data-api",
"version": "1.0.0",
"description": "Solana OHLC candlestick data API — Vybe API",
"type": "module",
"main": "dist/server.js",
"scripts": {
"start": "tsx src/server.ts",
"dev": "tsx src/server.ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"build:frontend": "tsc -p tsconfig.frontend.json",
"prestart": "npm run build:frontend",
"debug:trades": "tsx scripts/debug-trades-candles.ts"
},
"keywords": ["solana", "trades", "historical", "vybe", "api"],
"license": "MIT",
"dependencies": {
"@solana/web3.js": "1.98.4",
"axios": "1.7.9",
"dotenv": "16.4.5",
"express": "4.21.1"
},
"devDependencies": {
"@types/express": "5.0.0",
"@types/node": "22.10.1",
"typescript": "5.6.3",
"tsx": "4.19.2"
},
"engines": {
"node": ">=20"
}
}