-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.48 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
{
"version": "0.9.2",
"name": "substreams-sink-webhook",
"description": "Substreams Sink Webhook",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"substreams-sink-webhook": "dist/bin/cli.js"
},
"author": {
"name": "Denis",
"email": "denis@pinax.network"
},
"files": [
"dist",
"src"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./auth": {
"types": "./dist/src/auth.d.ts",
"import": "./dist/src/auth.js",
"default": "./dist/src/auth.js"
},
"./schemas": {
"types": "./dist/src/schemas.d.ts",
"import": "./dist/src/schemas.js",
"default": "./dist/src/schemas.js"
}
},
"scripts": {
"start": "tsc && node ./dist/bin/cli.js run",
"dev": "tsc && nodemon ./dist/bin/cli.js run",
"pretest": "tsc --noEmit",
"test": "bun test",
"posttest": "bunx @biomejs/biome check .",
"prepublishOnly": "tsc",
"format": "bunx @biomejs/biome format --write ./",
"bench": "bun ./src/**/*.bench.ts"
},
"dependencies": {
"@noble/curves": "latest",
"log-update": "latest",
"p-queue": "latest",
"substreams-sink": "^0.15.0",
"zod": "latest"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bun": "latest",
"mitata": "latest",
"nodemon": "latest",
"tweetnacl": "latest",
"typescript": "latest"
}
}