forked from raydium-io/raydium-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.72 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
87
88
{
"name": "@raydium-io/raydium-sdk",
"version": "1.1.0-beta.0",
"description": "An SDK for building applications on top of Raydium.",
"license": "GPL-3.0",
"main": "./lib/index.js",
"module": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"files": [
"./lib",
"./src"
],
"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",
"rebuild-sharp": "npm rebuild sharp",
"check-solana-tokens": "ts-node ./misc/token/check-solana-tokens.ts",
"down-icons": "ts-node ./misc/token/down-icons.ts",
"build-tokens-json": "ts-node ./misc/token/build-json.ts",
"build-liquidity-json": "ts-node ./misc/liquidity/build-json.ts",
"build-farm-json": "ts-node ./misc/farm/build-json.ts",
"build-json": "yarn build-tokens-json && yarn build-liquidity-json && yarn build-farm-json",
"build-docs": "typedoc",
"build-docs-watch": "typedoc --watch",
"build-dist": "rm -rf dist && mkdir dist && yarn build-docs && cp -r icons ./dist/icons && yarn build-json",
"build-lib": "rm -rf lib && tsup src --format cjs,esm --dts --sourcemap --no-splitting --minify -d lib",
"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.34.0",
"bn.js": "^5.2.0"
},
"dependencies": {
"@colors/colors": "^1.5.0",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token": "^0.1.8",
"big.js": "^6.1.1",
"decimal.js-light": "^2.5.1",
"fecha": "^4.2.1",
"lodash": "^4.17.21",
"toformat": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@solana/spl-token-registry": "^0.2.2304",
"@types/big.js": "^6.1.3",
"@types/bn.js": "^5.1.0",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.18",
"@types/sharp": "^0.29.5",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"ajv": "^8.10.0",
"babel-jest": "^27.5.1",
"chalk": "^4.1.2",
"consola": "^2.15.3",
"dotenv": "^10.0.0",
"eslint": "^8.9.0",
"eslint-plugin-tsdoc": "^0.2.14",
"got": "^11.8.3",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.4",
"npm-check-updates": "^12.3.0",
"prettier": "^2.5.1",
"sharp": "^0.30.1",
"ts-node": "^10.5.0",
"tsup": "^5.12.6",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}