-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "orcasdk-multiswap",
"version": "1.1.13",
"description": "Typescript SDK for the Orca protocol.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@orca-so/aquafarm": "^0.0.12",
"@orca-so/stablecurve": "^1.0.5",
"@solana/spl-token": "^0.1.5",
"@solana/spl-token-swap": "^0.1.2",
"@solana/web3.js": "^1.24.1",
"decimal.js": "^10.3.1"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/decimal.js": "^7.4.0",
"@types/jest": "^26.0.24",
"@types/node": "^12.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"builder-pattern": "^1.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": ">=10",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2"
},
"scripts": {
"build": "tsc -p src",
"watch": "tsc -w -p src",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"prepare": "husky install",
"prepublishOnly": "tsc -p src",
"test": "jest"
},
"lint-staged": {
"*.{ts,md}": "yarn run prettier-format"
},
"files": [
"/dist"
],
"keywords": [
"orca_so",
"orca",
"solana",
"typescript",
"sdk",
"crypto",
"dex"
]
}