forked from 01protocol/zo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "@zero_one/client",
"version": "0.8.7",
"license": "Apache-2.0",
"description": "TypeScript Client API",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"build-docs": "typedoc --out docs src/index.ts",
"lint-format": "prettier --check ./src",
"prepare": "husky install",
"tsc": "tsc"
},
"dependencies": {
"@project-serum/anchor": "^0.20.1",
"@solana/spl-token": "^0.1.8",
"@zero_one/lite-serum": "^0.1.1",
"bn.js": "^5.2.0",
"buffer-layout": "^1.2.2",
"decimal.js": "^10.3.1"
},
"peerDependencies": {
"@solana/web3.js": "^1.31.0"
},
"devDependencies": {
"@types/node": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"prettier": {
"trailingComma": "all"
},
"author": ""
}