-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.33 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
{
"name": "substreams-sink",
"version": "0.16.0",
"description": "Substreams Sink",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "[email protected]:pinax-network/substreams-sink.git",
"keywords": [
"substreams",
"streamingfast",
"firehose",
"thegraph",
"pinax"
],
"author": {
"name": "Denis",
"email": "[email protected]"
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20"
},
"contributors": [
{
"name": "Denis",
"email": "[email protected]"
},
{
"name": "Charles",
"email": "[email protected]"
},
{
"name": "Francois",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@substreams/core": "^0.15.1",
"@substreams/manifest": "^0.14.1",
"@substreams/node": "^0.6.2",
"commander": "latest",
"dotenv": "latest",
"prom-client": "latest",
"tslog": "latest"
},
"devDependencies": {
"@types/node": "latest",
"typescript": "latest"
}
}