-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "@neume-network/crawler",
"version": "0.0.1",
"description": "",
"exports": "./dist/neume.js",
"type": "module",
"bin": {
"neume": "./dist/neume.js"
},
"scripts": {
"start": "node ./dist/neume.js",
"build": "npm run compile-schemas && tsc -b",
"postbuild": "cp -r ./assets ./dist",
"compile-schemas": "node commands/daemon/daemon-jsonrpc-schema.js > commands/daemon/daemon-jsonrpc-type.d.ts",
"test": "ava"
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"dependencies": {
"@neume-network/extraction-worker": "github:neume-network/extraction-worker",
"@neume-network/schema": "github:neume-network/schema",
"ava": "^5.1.0",
"dotenv": "^16.0.3",
"eth-fun": "^0.9.2",
"fastify": "^4.10.2",
"ipfs-uri-utils": "^1.0.1",
"json-canonicalize": "^1.0.4",
"json-rpc-2.0": "^1.4.2",
"json-schema-to-typescript": "^11.0.2",
"level": "^8.0.0",
"p-map": "^5.5.0",
"yargs": "^17.6.2"
},
"engines": {
"node": "16"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/yargs": "^17.0.14",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}