-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@oselezi/solana-volume-sdk",
"version": "1.5.6",
"description": "Solana Market Maker AMM to generate volume trades",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "node dist/test/test.js",
"prepare": "npm run build",
"docs": "typedoc --out docs src"
},
"keywords": [
"solana",
"jito",
"typescript",
"sdk",
"blockchain",
"program",
"bundle",
"node",
"swap",
"volume",
"makers"
],
"author": "oselezi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oselezi/solana-volume-sdk.git"
},
"dependencies": {
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.73.0",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/node": "^16.11.7",
"@types/node-fetch": "^2.5.12",
"typedoc": "^0.26.11",
"typescript": "^5.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"sideEffects": false
}