-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "substreams-sink-prometheus",
"version": "0.7.11",
"description": "Substreams Prometheus sink module",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"substreams-sink-prometheus": "dist/bin/cli.js"
},
"repository": "[email protected]:pinax-network/substreams-sink-prometheus.git",
"keywords": [
"substreams",
"streamingfast",
"firehose",
"thegraph",
"pinax"
],
"author": {
"name": "Denis",
"email": "[email protected]"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Denis",
"email": "[email protected]"
},
{
"name": "Charles",
"email": "[email protected]"
}
],
"license": "MIT OR Apache-2.0",
"scripts": {
"start": "tsc && node ./dist/bin/cli.js run",
"build": "tsc",
"rollup": "rollup -c rollup.config.mjs",
"linux": "npm run build && npm run rollup && ./scripts/build.linux.sh",
"macos": "npm run build && npm run rollup && ./scripts/build.macos.sh",
"windows": "npm run build && npm run rollup && ./scripts/build.windows.sh",
"prepublishOnly": "npm run build",
"codegen": "buf generate ./proto"
},
"dependencies": {
"prom-client": "latest",
"substreams-sink": "latest"
},
"devDependencies": {
"@bufbuild/buf": "latest",
"@connectrpc/protoc-gen-connect-es": "latest",
"@bufbuild/protoc-gen-es": "latest",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tsconfig/recommended": "latest",
"@types/node": "latest",
"rollup": "^4.9.6",
"tsx": "latest",
"typescript": "latest"
}
}