-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.62 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.62 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
{
"name": "veeam-data-cloud-services-map",
"version": "1.1.2",
"description": "Interactive map and API for Veeam Data Cloud service availability across AWS and Azure regions",
"private": true,
"scripts": {
"build:data": "node scripts/build-api-data.js",
"build:worker": "node scripts/build-worker.js",
"typecheck": "tsc --noEmit",
"build": "npm run build:data && npm run build:worker && npm run typecheck && hugo --gc --minify",
"dev": "npm run build:data && npm run build:worker && wrangler pages dev public",
"pretest": "npm run build:data && npm run build:worker",
"test": "npm run test:validate && npm run test:scraper && npm run test:api",
"test:api": "node scripts/test-api.js",
"test:validate": "node scripts/test-validate-regions.js",
"test:scraper": "node scripts/test-scraper.js",
"validate": "node scripts/validate-regions.js",
"scrape:regions": "node scripts/scrape-veeam-regions.js",
"scrape:issues": "node scripts/create-region-issues.js",
"clean": "rm -rf public functions/regions.json functions/_worker.js region-discrepancies.json issues-to-create.json"
},
"keywords": [
"veeam",
"cloud",
"regions",
"api",
"map"
],
"author": "",
"license": "MIT",
"dependencies": {
"@hono/zod-openapi": "^1.2.0",
"@scalar/hono-api-reference": "^0.9.30",
"hono": "^4.11.7",
"js-yaml": "^4.1.1",
"zod": "^4.3.4"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260103.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.3",
"esbuild": "^0.27.2",
"typescript": "^5.9.3",
"wrangler": "^4.59.1"
}
}