forked from project-serum/serum-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.69 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
{
"name": "@project-serum/pool",
"version": "0.2.3",
"description": "Library for interacting with the serum pools",
"repository": "project-serum/serum-ts",
"main": "dist/lib/index.js",
"source": "src/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",
"start": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "run-s clean build",
"docs": "typedoc --out ../../docs/pool --mode library --composite false --rootDir src src/index.ts src/*.d.ts",
"test": "run-s test:build test:unit test:lint",
"test:build": "run-s build",
"test:lint": "eslint src",
"test:unit": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@project-serum/associated-token": "^0.1.1",
"@project-serum/borsh": "^0.0.1-beta.0",
"@project-serum/token": "^0.0.1-alpha.2",
"bn.js": "^5.1.2",
"buffer-layout": "^1.2.0"
},
"peerDependencies": {
"@solana/web3.js": "^0.90.0"
},
"devDependencies": {
"@solana/web3.js": "^0.90.0",
"@types/bn.js": "^4.11.6",
"@types/jest": "^26.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.2",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.3",
"typedoc": "0.17.0-3",
"typescript": "^4.0.5"
},
"files": [
"dist"
],
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"maintained node versions"
]
}