-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.83 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.83 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
52
53
54
55
56
57
58
{
"name": "ensrainbow",
"version": "1.9.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",
"entrypoint": "tsx src/cli.ts entrypoint",
"ingest": "tsx src/cli.ts ingest",
"ingest-ensrainbow": "tsx src/cli.ts ingest-ensrainbow",
"validate": "tsx src/cli.ts validate",
"validate:lite": "tsx src/cli.ts validate --lite",
"purge": "tsx src/cli.ts purge",
"convert": "tsx src/cli.ts convert",
"convert-sql": "tsx src/cli.ts convert-sql",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "biome check --write .",
"lint:ci": "biome ci",
"typecheck": "tsgo --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": "catalog:",
"enssdk": "workspace:*",
"classic-level": "^1.4.1",
"hono": "catalog:",
"pino": "catalog:",
"progress": "^2.0.3",
"protobufjs": "^7.5.5",
"viem": "catalog:",
"yargs": "^17.7.2",
"@fast-csv/parse": "^5.0.0",
"zod": "catalog:"
},
"devDependencies": {
"@ensnode/shared-configs": "workspace:*",
"@types/node": "catalog:",
"@types/progress": "^2.0.7",
"@types/yargs": "^17.0.32",
"pino-pretty": "^13.1.2",
"tsx": "^4.19.3",
"typescript": "^5.3.3",
"vitest": "catalog:"
}
}