-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.04 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.04 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
{
"name": "pump-fun-token-launcher",
"version": "1.0.0",
"description": "Programmatically launch pump.fun tokens with TypeScript support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"example": "tsx example.ts"
},
"keywords": [
"pump.fun",
"solana",
"token",
"crypto",
"blockchain",
"defi"
],
"author": "Bilix Software",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bilix-software/pump-fun-token-launcher.git"
},
"bugs": {
"url": "https://github.com/bilix-software/pump-fun-token-launcher/issues"
},
"homepage": "https://github.com/bilix-software/pump-fun-token-launcher#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0"
},
"dependencies": {
"@solana/web3.js": "^1.95.0"
},
"engines": {
"node": ">=16.0.0"
}
}