-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.41 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-database-changes",
"version": "0.3.6",
"description": "Substreams Sink Database Changes",
"type": "module",
"license": "MIT",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./typebox": {
"import": "./dist/src/typebox.js",
"types": "./dist/src/typebox.d.ts",
"default": "./dist/src/typebox.js"
},
"./zod": {
"import": "./dist/src/zod.js",
"types": "./dist/src/zod.d.ts",
"default": "./dist/src/zod.js"
},
"./database_pb": {
"import": "./dist/src/generated/sf/substreams/sink/database/v1/database_pb.js",
"types": "./dist/src/generated/sf/substreams/sink/database/v1/database_pb.d.ts",
"default": "./dist/src/generated/sf/substreams/sink/database/v1/database_pb.js"
}
},
"scripts": {
"build": "tsc",
"prepublish": "npm run build",
"codegen": "buf generate ./proto",
"test": "vitest run"
},
"dependencies": {
"@bufbuild/protobuf": "latest",
"@sinclair/typebox": "latest",
"zod": "latest"
},
"devDependencies": {
"@bufbuild/buf": "latest",
"@bufbuild/protoc-gen-connect-es": "latest",
"@bufbuild/protoc-gen-es": "latest",
"@types/node": "^20.12.4",
"typescript": "latest",
"vitest": "latest"
}
}