-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 934 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 934 Bytes
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
{
"name": "rdap.cloud",
"version": "2026.2.7",
"description": "a cloudflare worker for rdap servers",
"main": "index.js",
"scripts": {
"test": "vitest run",
"test:single": "vitest run -t",
"format": "prettier --write '**/*.{js,css,json,md}'",
"types": "wrangler types"
},
"author": "Matthew Gall <me@matthewgall.dev>",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"devDependencies": {
"@types/node": "^25.6.0",
"@types/validator": "^13.15.10",
"typescript": "^6.0.3",
"vitest": "^4.1.4",
"wrangler": "^4.83.0"
},
"dependencies": {
"cidr-tools": "^11.3.3",
"hono": "^4.12.14",
"moment": "^2.30.1",
"tld-extract": "^2.1.0",
"validator": "^13.15.35"
}
}