This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
67 lines (67 loc) · 1.67 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
{
"name": "@orca-so/whirlpool-sdk",
"version": "0.4.1",
"description": "Whirlpool SDK for the Orca protocol.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@orca-so/common-sdk": "0.0.4",
"@orca-so/whirlpool-client-sdk": "0.0.7",
"@project-serum/anchor": "^0.20.1",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"axios": "^0.25.0",
"decimal.js": "^10.3.1",
"tiny-invariant": "^1.2.0"
},
"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": "yarn build",
"test": "jest"
},
"lint-staged": {
"*.{ts,md}": "yarn run prettier-format"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/orca-so/whirlpool-sdk.git"
},
"keywords": [
"orca_so",
"orca",
"solana",
"typescript",
"sdk",
"crypto",
"dex"
],
"author": "[email protected]",
"bugs": {
"url": "https://github.com/orca-so/whirlpool-sdk/issues"
},
"homepage": "https://www.orca.so"
}