-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 852 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
{
"name": "jup-fetch",
"version": "0.1.7",
"description": "Optimization of the fetching of Jup API using bun",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean:all": "rm -rf ./node_modules && rm -rf ./dist && rm -rf package-lock.json",
"run:script": "npm run clean:all && bun install && bun run build && node index.js",
"build": "rimraf dist && tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ricardocr987/jup-fetch"
},
"author": "Riki",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.44.3",
"bs58": "^5.0.0",
"got": "^12.0.1",
"net": "^1.0.2",
"promise-retry": "^2.0.1",
"tls": "^0.0.1"
}
}