forked from raydium-io/raydium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.41 KB
/
package.json
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
{
"name": "@raydium-io/raydium-sdk",
"version": "1.3.1-beta.51",
"description": "An SDK for building applications on top of Raydium.",
"license": "GPL-3.0",
"files": [
"lib",
"src"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"repository": "https://github.com/raydium-io/raydium-sdk",
"keywords": [
"raydium",
"solana"
],
"lint-staged": {
"{src,test,misc}/**/*.ts": [
"yarn lint"
]
},
"scripts": {
"lint": "eslint src/**/*.ts",
"test": "jest",
"build-docs": "typedoc",
"build-docs-watch": "typedoc --watch",
"build-dist": "shx rm -rf dist && mkdir dist && yarn build-docs",
"build-lib": "shx rm -rf lib && tsc --build --verbose && yarn run package",
"package": "shx mkdir -p lib/cjs && shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json",
"build-all": "yarn build-dist && yarn build-lib",
"install-peers": "ts-node ./misc/install-peers.ts",
"build": "yarn build-lib",
"push": "yarn build && yarn publish",
"prepare": "husky install"
},
"peerDependencies": {
"@solana/web3.js": "^1.73.0"
},
"dependencies": {
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "^0.3.9",
"axios": "^1.6.2",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"decimal.js": "^10.4.3",
"decimal.js-light": "^2.5.1",
"fecha": "^4.2.3",
"lodash": "^4.17.21",
"toformat": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@solana/spl-token-registry": "^0.2.4574",
"@types/big.js": "^6.2.2",
"@types/bn.js": "^5.1.5",
"@types/jest": "^29.5.10",
"@types/node": "^20.9.4",
"@types/node-fetch": "^2.6.9",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"ajv": "^8.12.0",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"consola": "^3.2.3",
"dotenv": "^16.3.1",
"eslint": "^8.54.0",
"eslint-plugin-tsdoc": "^0.2.17",
"got": "^13.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.1.0",
"npm-check-updates": "^16.14.11",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typescript": "^5.3.2"
}
}