-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "substreams-clock-api",
"description": "Block & Timestamps API",
"version": "1.4.1",
"homepage": "https://github.com/pinax-network/substreams-clock-api",
"license": "MIT",
"type": "module",
"authors": [
{
"name": "Etienne Donneger",
"email": "[email protected]",
"url": "https://github.com/Krow10"
},
{
"name": "Denis Carriere",
"email": "[email protected]",
"url": "https://github.com/DenisCarriere/"
}
],
"scripts": {
"start": "bun index.ts",
"dev": "bun --watch index.ts",
"pretest": "bunx tsc --noEmit --skipLibCheck --pretty",
"test": "bun test --coverage",
"build": "bun build --compile ./index.ts --outfile substreams-clock-api"
},
"dependencies": {
"@clickhouse/client-web": "latest",
"commander": "latest",
"dotenv": "latest",
"openapi3-ts": "latest",
"prom-client": "latest",
"tslog": "latest",
"zod": "latest"
},
"devDependencies": {
"bun-types": "latest",
"typescript": "latest"
}
}