forked from project-serum/serum-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 726 Bytes
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
{
"name": "@project-serum/borsh",
"version": "0.2.2",
"description": "Serum Borsh",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"exports": {
".": "./dist/lib/index.js"
},
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"docs": "typedoc --out ../../docs/borsh --mode library --composite false --rootDir src src/index.ts src/*.d.ts",
"test": "",
"clean": "rm -rf dist",
"prepare": "run-s clean build"
},
"dependencies": {
"bn.js": "^5.1.2",
"buffer-layout": "^1.2.0"
},
"peerDependencies": {
"@solana/web3.js": "^1.2.0"
},
"files": [
"dist"
]
}