-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "xrplmeta",
"version": "2.10.1-alpha",
"type": "module",
"bin": {
"xrplmeta": "./src/run.js"
},
"scripts": {
"start": "node src/run.js",
"postinstall": "npm run build-deps",
"build-deps": "node-gyp rebuild --directory=deps --release",
"test": "mocha test/unit/*.test.js",
"livetest": "node test/live/run.js"
},
"dependencies": {
"@mwni/events": "3.0.0",
"@mwni/log": "3.2.0",
"@mwni/workers": "1.0.2",
"@structdb/sqlite": "1.6.1-alpha",
"@xrplkit/socket": "2.1.0",
"@xrplkit/time": "1.0.0",
"@xrplkit/tokens": "1.0.1",
"@xrplkit/toml": "1.0.0",
"@xrplkit/txmeta": "1.4.1",
"@xrplkit/xfl": "2.1.1",
"@xrplkit/xls26": "2.4.0",
"@koa/router": "13.0.0",
"koa": "2.15.3",
"koa-easy-ws": "2.1.0",
"koa-json": "2.0.2",
"koa-send": "5.0.1",
"better-sqlite3": "11.5.0",
"limiter": "2.0.1",
"node-abort-controller": "3.1.1",
"node-fetch": "3.3.2",
"minimist": "1.2.8",
"ripple-address-codec": "5.0.0",
"sharp": "0.33.5",
"ws": "8.18.0"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3"
}
}