forked from project-serum/serum-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.55 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
{
"name": "@project-serum/swap",
"version": "0.1.0-alpha.1",
"description": "Client for swapping on the Serum DEX",
"license": "MIT",
"repository": "project-serum/serum-ts",
"main": "lib/index.js",
"source": "src/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"start": "tsc --watch",
"clean": "rm -rf lib",
"docs": "typedoc --excludePrivate --out ../../docs/swap src/index.ts --includeVersion --readme none",
"prepare": "run-s clean build",
"shell": "node -e \"$(< shell)\" -i --experimental-repl-await"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@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.6.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typedoc": "^0.20.36",
"typescript": "^4.0.5"
},
"files": [
"lib"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"@project-serum/anchor": "^0.5.1-beta.2",
"@project-serum/serum": "^0.13.34",
"@solana/spl-token": "^0.1.3",
"@solana/spl-token-registry": "^0.2.68",
"@solana/web3.js": "^1.2.0",
"base64-js": "^1.5.1",
"bn.js": "^5.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all",
"maintained node versions"
]
}