-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.5 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
56
57
58
59
60
61
62
63
{
"name": "solana-bundling",
"version": "1.0.0",
"description": "Solana Bundling TypeScript Toolkit API",
"scripts": {
"test": "mocha test.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonlee829/solana-bundling.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://solana.com",
"keywords": [
"solana",
"blockchain",
"createPool",
"bundle"
],
"engines": {
"node": ">14.0"
},
"author": "Jason",
"license": "MIT",
"main": ".index.ts",
"files": [
"lib/",
"src/"
],
"dependencies": {
"@metaplex-foundation/js": "^0.20.1",
"@project-serum/serum": "^0.13.65",
"@raydium-io/raydium-sdk": "^1.3.1-beta.46",
"@solana-developers/node-helpers": "^1.2.2",
"@solana/spl-token": "^0.4.0",
"@solana/spl-token-registry": "^0.2.4574",
"@solana/web3.js": "^1.89.1",
"bignumber.js": "^9.1.2",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"dotenv": "^16.0.3",
"jito-ts": "^3.0.1",
"nodemon": "^3.0.1"
},
"devDependencies": {
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.5",
"@types/debug": "^4.1.12",
"@types/dotenv": "^8.2.0",
"@types/node": "^18.7.14",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"rewire": "^6.0.0",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}