-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "pumpfun-sdk",
"version": "1.0.3",
"description": "SDK for interacting with Pump.fun",
"author": "Synthexlab",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"build": "tsc",
"prepare": "npm run build",
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"lint": "eslint src/ --ext .ts",
"coverage": "nyc npm test"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.9",
"@types/mocha": "^10.0.3",
"@types/sinon": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"chai": "^4.5.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@solana/spl-token": "^0.4.6",
"@solana/web3.js": "^1.91.8",
"axios": "^1.6.8",
"bs58": "^5.0.0"
}
}