forked from tardis-dev/serum-vial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.9 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "serum-vial",
"version": "1.3.7",
"engines": {
"node": ">=15"
},
"description": "Real-time WebSocket market data API server for Serum DEX",
"main": "dist/index.js",
"source": "src/index.js",
"types": "dist/index.d.ts",
"repository": "tardis-dev/serum-vial",
"homepage": "https://github.com/tardis-dev/serum-vial",
"scripts": {
"build": "tsc",
"precommit": "lint-staged",
"test": "npm run build && jest --forceExit",
"prepare": "npm run build",
"start:debug": "npm run build && node ./bin/serum-vial.js --log-level=debug",
"format": "prettier --write .",
"check-format": "prettier --check ."
},
"bin": {
"serum-vial": "bin/serum-vial.js"
},
"files": [
"src",
"dist",
"bin"
],
"keywords": [
"serum dex",
"serum api",
"api client",
"solana",
"cryptocurrency api",
"exchange",
"defi"
],
"license": "MPL-2.0",
"dependencies": {
"@project-serum/serum": "^0.13.60",
"@solana/web3.js": "^1.30.2",
"@types/bintrees": "^1.0.3",
"@types/bn.js": "^5.1.0",
"abort-controller": "^3.0.0",
"bintrees": "^1.0.2",
"bn.js": "^5.2.0",
"didyoumean2": "^5.0.0",
"is-docker": "^2.2.1",
"node-fetch": "^2.6.1",
"uWebSockets.js": "git+https://[email protected]/uNetworking/uWebSockets.js.git#v20.4.0",
"winston": "^3.3.3",
"ws": "^8.2.3",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/node-fetch": "^2.5.12",
"@types/ws": "^8.2.0",
"cross-var": "^1.1.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"lint-staged": {
"*.{ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"\\.(ts|tsx)?$": "ts-jest"
},
"testEnvironment": "node"
}
}