-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 938 Bytes
/
package.json
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
{
"name": "ohlcvcreator",
"description": "Live OHLCV data getter for Solana on-chain memecoins, based on Solana WEB3 SDK and Jupiter Exchange Price API",
"version": "v0.0.1-beta",
"main": "src/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Solcrates-Labs/ohlcvcreator.git"
},
"keywords": [
"nodejs",
"api",
"crypto",
"server",
"api-server",
"ohlcv",
"ohlcv-data",
"ohlcv-api"
],
"author": "PunishedHideo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Solcrates-Labs/ohlcvcreator/issues"
},
"homepage": "https://github.com/Solcrates-Labs/ohlcvcreator#readme",
"devDependencies": {
"jest": "^29.7.0",
"prettier": "^3.3.3"
},
"dependencies": {
"@solana/web3.js": "^1.95.8",
"chalk": "^4.1.2",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.7",
"express": "^4.21.1"
}
}