forked from namehash/ensnode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.56 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.56 KB
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
{
"name": "ensrainbow",
"version": "0.28.0",
"private": true,
"type": "module",
"description": "ENSRainbow is an ENSNode service for healing ENS labels",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/namehash/ensnode.git",
"directory": "apps/ensrainbow"
},
"homepage": "https://github.com/namehash/ensnode/tree/main/apps/ensrainbow",
"scripts": {
"serve": "tsx src/cli.ts serve",
"ingest": "tsx src/cli.ts ingest",
"validate": "tsx src/cli.ts validate",
"validate:lite": "tsx src/cli.ts validate --lite",
"purge": "tsx src/cli.ts purge",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "biome check --write .",
"lint:ci": "biome ci",
"typecheck": "tsc --noEmit",
"get-legacy-data": "./download-rainbow-tables.sh",
"get-v2-data": "DATA_VERSION=v2 ./download-rainbow-tables.sh",
"get-test-data": "DATA_VERSION=test ./download-rainbow-tables.sh"
},
"dependencies": {
"@ensnode/ensrainbow-sdk": "workspace:*",
"@ensnode/ensnode-sdk": "workspace:*",
"@hono/node-server": "^1.4.1",
"classic-level": "^1.4.1",
"hono": "catalog:",
"pino": "^8.19.0",
"pino-pretty": "^10.3.1",
"progress": "^2.0.3",
"viem": "catalog:",
"yargs": "^17.7.2"
},
"devDependencies": {
"@ensnode/shared-configs": "workspace:*",
"@types/node": "^20.17.14",
"@types/progress": "^2.0.7",
"@types/yargs": "^17.0.32",
"@vitest/coverage-v8": "catalog:",
"tsx": "^4.19.3",
"typescript": "^5.3.3",
"vitest": "catalog:"
}
}