-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
{
"name": "substreams",
"description": "Substreams Javascript consumer",
"version": "0.7.3",
"homepage": "https://github.com/pinax-network/substreams-js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"browser": {
"events": false
},
"sideEffects": false,
"runkitExampleFilename": "example.js",
"license": "MIT OR Apache-2.0",
"files": [
"dist/*",
"example.js"
],
"author": "Denis <[email protected]>",
"contributors": [
"Denis <[email protected]>",
"Fred <[email protected]>",
"Yaro <[email protected]>",
"Etienne <[email protected]>",
"Sebastian <@fubhy>"
],
"scripts": {
"build": "tsup src/index.ts --dts",
"test": "tsx --test **/*.spec.ts",
"prepublishOnly": "npm run test && npm run build",
"codegen": "buf generate buf.build/streamingfast/substreams && buf generate proto"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@bufbuild/connect": "0.8.x",
"@bufbuild/connect-node": "0.8.x",
"@bufbuild/connect-web": "0.8.x",
"@bufbuild/protobuf": "1.x",
"typed-emitter": "latest"
},
"devDependencies": {
"@bufbuild/buf": "1.x",
"@bufbuild/protoc-gen-connect-es": "0.8.x",
"@bufbuild/protoc-gen-es": "1.x",
"@tsconfig/recommended": "latest",
"@types/node": "latest",
"tsup": "latest",
"tsx": "latest",
"typescript": "latest"
}
}