forked from nirholas/pump-fun-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (114 loc) · 2.86 KB
/
package.json
File metadata and controls
115 lines (114 loc) · 2.86 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@pump-fun/pump-sdk",
"version": "1.28.0",
"description": "TypeScript SDK for the Pump protocol on Solana — token creation, bonding curves, AMM pools, fee sharing, and volume rewards",
"keywords": [
"solana",
"pump",
"pumpfun",
"bonding-curve",
"token",
"amm",
"defi",
"sdk",
"typescript",
"mcp"
],
"homepage": "https://github.com/nirholas/pump-fun-sdk#readme",
"bugs": {
"url": "https://github.com/nirholas/pump-fun-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirholas/pump-fun-sdk.git"
},
"license": "MIT",
"author": "nirholas",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/esm/index.js"
},
"./*": {
"types": "./dist/*/index.d.ts",
"require": "./dist/*/index.js",
"import": "./dist/*/index.js"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup --clean --dts",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint --cache --quiet \"${@:-.}\"",
"lint:fix": "eslint --cache --fix --quiet \"${@:-.}\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@coral-xyz/anchor": "^0.31.1",
"@pump-fun/pump-swap-sdk": "^1.13.0",
"@solana/spl-token": "^0.4.13",
"@solana/web3.js": "^1.98.2",
"bn.js": "^5.2.2"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/bn.js": "^5.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"bs58": "^6.0.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.7.0",
"semantic-release": "^24.2.3",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"@eslint/js": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-plugin-atomic-design-hierarchy": "^1.0.11",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.11",
"eslint-plugin-no-barrel-files": "^1.2.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^54.0.0",
"globals": "^15.12.0",
"undici-types": "^6.20.0",
"typescript-eslint": "^8.29.1"
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
],
"branches": [
{
"name": "main"
},
{
"name": "devnet",
"prerelease": true
}
]
}
}