forked from raydium-io/raydium-sdk-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.22 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
{
"name": "@raydium-io/raydium-sdk-v2",
"version": "0.1.71-alpha",
"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-V2",
"publicConfig": {
"registry": "https://registry.yarnpkg.com",
"access": "public"
},
"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": "rm -rf dist && mkdir dist && yarn build-docs",
"build-lib": "rm -rf lib && tsup src --format cjs,esm --dts --sourcemap --no-splitting --minify -d lib --silent",
"build-all": "yarn build-dist && yarn build-lib",
"build": "yarn build-lib",
"push": "yarn build && yarn publish",
"prepare": "husky install",
"dev": "ts-node -r tsconfig-paths/register"
},
"dependencies": {
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-token": "^0.4.8",
"@solana/web3.js": "^1.95.3",
"axios": "^1.1.3",
"big.js": "^6.2.1",
"bn.js": "^5.2.1",
"dayjs": "^1.11.5",
"decimal.js-light": "^2.5.1",
"lodash": "^4.17.21",
"toformat": "^2.0.0",
"tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.0",
"@babel/preset-env": "^7.18.0",
"@babel/preset-typescript": "^7.17.12",
"@tsconfig/node14": "^1.0.3",
"@types/big.js": "^6.1.3",
"@types/bn.js": "^5.1.1",
"@types/jest": "^27.5.1",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"babel-jest": "^27.5.1",
"eslint": "^8.15.0",
"eslint-plugin-tsdoc": "^0.2.16",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"ts-jest": "^27.0.7",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.7.0",
"tsup": "^5.12.8",
"typedoc": "^0.22.15",
"typescript": "^4.7.3",
"yarn": "^1.22.19"
}
}