-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.97 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.97 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pumpdotfun-repumped-sdk",
"version": "1.4.2",
"description": "Pumpfun SDK — create, buy, sell tokens with support for Jito bundles and multiple relayer integrations. Rebuilt and fixed pumpdotfun-sdk.",
"author": "D3AD-E <evg.gordi@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/D3AD-E/pumpdotfun-sdk-repumped.git"
},
"bugs": {
"url": "https://github.com/D3AD-E/pumpdotfun-sdk-repumped/issues"
},
"homepage": "https://github.com/D3AD-E/pumpdotfun-sdk-repumped#readme",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./dist/esm/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rimraf dist && rollup -c --bundleConfigAsCjs",
"prepare": "npm run build",
"example": "npm run build && tsx example/index.ts",
"lint": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"bn.js": "^5.2.2",
"jito-ts": "^4.2.0"
},
"devDependencies": {
"@coral-xyz/borsh": "^0.31.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.3",
"@tsconfig/node20": "^20.1.6",
"@types/node": "^20.19.1",
"dotenv": "^16.5.0",
"rimraf": "^6.0.1",
"rollup": "^4.44.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"pump.fun",
"pumpfun",
"pumpdotfun",
"solana",
"pumpdotfunsdk",
"sdk",
"token",
"jito",
"web3",
"create",
"buy",
"sell",
"trading"
]
}