-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.88 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
{
"name": "pumpvault",
"version": "0.1.0",
"description": "Launch pump.fun coins, claim creator fees, and rescue funds from drained wallets with Jito-atomic bundles. Non-custodial: keys are generated and encrypted in the browser.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/nirholas/pumpvault.git"
},
"homepage": "https://github.com/nirholas/pumpvault#readme",
"bugs": {
"url": "https://github.com/nirholas/pumpvault/issues"
},
"keywords": [
"pump.fun",
"solana",
"jito",
"creator-fees",
"launchpad",
"wallet"
],
"engines": {
"node": ">=20"
},
"bin": {
"pumpvault": "./cli/pumpvault.mjs"
},
"exports": {
".": "./src/lib/index.js",
"./jito": "./src/lib/jito.js",
"./pump": "./src/lib/pump.js",
"./fees": "./src/lib/fees.js",
"./atomic": "./src/lib/atomic.js",
"./keys": "./src/lib/keys.js",
"./vault": "./src/lib/vault.js"
},
"imports": {
"#pump-sdk": {
"node": "./src/lib/pump-sdk.node.js",
"default": "./src/lib/pump-sdk.js"
}
},
"files": [
"src/lib",
"cli",
"server",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "concurrently -k -n web,api \"vite\" \"node --env-file-if-exists=.env server/index.mjs\"",
"build": "vite build",
"preview": "vite preview",
"start": "node --env-file-if-exists=.env server/index.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@pump-fun/pump-sdk": "^2.0.0",
"@pump-fun/pump-swap-sdk": "^1.20.0",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"bn.js": "^5.2.2",
"bs58": "^6.0.0",
"express": "^5.1.0",
"qrcode": "^1.5.4"
},
"devDependencies": {
"concurrently": "^9.1.2",
"vite": "^7.0.0",
"vite-plugin-node-polyfills": "^0.28.0",
"vitest": "^3.2.4"
}
}