-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.6 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.6 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
{
"name": "lightning-pumpfun-creator",
"version": "1.0.0",
"description": "Lightning-fast PumpFun token creation with Jito, BloxRoute & Nozomi",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/examples/basic-token-creation.ts",
"test": "ts-node src/examples/performance-testing.ts",
"clean": "rm -rf dist",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"type-check": "tsc --noEmit",
"precommit": "npm run lint && npm run type-check"
},
"dependencies": {
"@solana/web3.js": "^1.95.2",
"@solana/spl-token": "^0.4.6",
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"pumpdotfun-sdk": "^1.3.2",
"jito-ts": "^4.0.0",
"axios": "^1.7.2",
"bs58": "^5.0.0",
"dotenv": "^16.4.5",
"bn.js": "^5.2.1"
},
"devDependencies": {
"typescript": "^5.5.4",
"@types/node": "^20.14.10",
"@types/bn.js": "^5.1.5",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"solana",
"pumpfun",
"token",
"jito",
"bloxroute",
"nozomi",
"defi",
"memecoin"
],
"author": "Lightning PumpFun Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/your-org/lightning-pumpfun-creator"
}
}