-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "substreams-sink-victoria-metrics",
"version": "0.0.16",
"description": "Substreams VictoriaMetrics sink module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"substreams-sink-victoria-metrics": "dist/bin/cli.js"
},
"repository": "git@github.com:pinax-network/substreams-sink-victoria-metrics.git",
"keywords": [
"substreams",
"streamingfast",
"firehose",
"thegraph",
"pinax"
],
"author": {
"name": "Francois",
"email": "francois@pinax.network"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Francois",
"email": "francois@pinax.network"
},
{
"name": "Denis",
"email": "denis@pinax.network"
}
],
"license": "MIT OR Apache-2.0",
"scripts": {
"prepublishOnly": "tsc",
"start": "tsc && node ./dist/bin/cli.js run",
"build": "bun build --compile ./index.ts --outfile substreams-sink-victoria-metrics",
"pretest": "bunx tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"@substreams/core": "^0.7.0",
"glob": "latest",
"substreams-sink": "^0.13.3"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "latest"
}
}