-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 977 Bytes
/
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
{
"private": true,
"name": "@substreams/core",
"version": "0.0.4",
"description": "Substreams Core",
"license": "MIT",
"repository": "substreams-js/substreams",
"type": "module",
"exports": "./dist/index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"build": "del-cli dist && tsc",
"codegen": "buf generate buf.build/streamingfast/substreams && buf generate proto",
"prepublishOnly": "npm run test && npm run build",
"test": "vitest --coverage"
},
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"substreams",
"streamingfast",
"thegraph",
"graph"
],
"dependencies": {
"@bufbuild/connect": "0.8.x",
"@bufbuild/protobuf": "1.2.x"
},
"devDependencies": {
"@bufbuild/buf": "latest",
"@sindresorhus/tsconfig": "latest",
"@types/node": "latest",
"@vitest/coverage-c8": "latest",
"del-cli": "latest",
"typescript": "latest",
"vitest": "latest"
}
}