-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 2 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
59
60
61
62
63
{
"name": "edgeprobe",
"version": "3.0.0-beta.2",
"description": "EdgeProbe - Cloudflare-native server monitoring",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "npm run build:frontend && wrangler deploy",
"tail": "wrangler tail",
"types": "wrangler types --include-runtime false",
"typecheck": "wrangler types --include-runtime false --check && tsc --project tsconfig.worker.json --noEmit",
"dev:frontend": "vite",
"dev:frontend-old": "vite --config vite.config.old.js",
"build:frontend": "npm run typecheck:frontend && node scripts/build.js",
"build:frontend-old": "vite build --config vite.config.old.js",
"typecheck:frontend": "vue-tsc --noEmit --project tsconfig.frontend.json",
"test:frontend": "tsx --tsconfig tsconfig.frontend.json --test test/frontend-logic.test.ts",
"build:github-page": "tsx scripts/build-github-page.js",
"test:agent-config": "tsx test/agent-config.js",
"preview": "vite preview"
},
"keywords": [
"cloudflare",
"workers",
"monitor",
"server",
"probe"
],
"author": "INP146 and contributors",
"repository": {
"type": "git",
"url": "git+https://github.com/INP146/EdgeProbe.git"
},
"bugs": {
"url": "https://github.com/INP146/EdgeProbe/issues"
},
"homepage": "https://github.com/INP146/EdgeProbe#readme",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^5.20260727.1",
"@types/node": "^26.1.1",
"@vitejs/plugin-vue": "^6.0.0",
"fs-extra": "^11.3.5",
"tsx": "^4.23.1",
"typescript": "6.0.3",
"vite": "^6.0.0",
"vite-plugin-mkcert": "^2.1.0",
"vue-tsc": "3.3.8",
"wrangler": "^4.114.0"
},
"dependencies": {
"@ant-design/icons-vue": "^7.0.1",
"ant-design-vue": "^4.2.6",
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"leaflet": "^1.9.4",
"vue": "^3.4.0",
"vue-router": "^4.4.0"
},
"engines": {
"node": ">=22.0.0"
}
}