-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.39 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
{
"name": "netgraph",
"private": true,
"version": "1.3.0",
"description": "Browser-based local network visualizer - map your home or lab network, stored entirely in localStorage with no backend.",
"license": "SEE LICENSE IN LICENSE",
"author": "BrainInBlack <braininblack@gmail.com>",
"homepage": "https://github.com/BrainInBlack/NetGraph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/BrainInBlack/NetGraph.git"
},
"bugs": {
"url": "https://github.com/BrainInBlack/NetGraph/issues"
},
"keywords": [
"network",
"network-map",
"network-diagram",
"topology",
"homelab",
"visualizer",
"local-first",
"offline",
"typescript",
"vite"
],
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && vite build --mode single",
"build:web": "tsc --noEmit && vite build",
"build:single": "tsc --noEmit && vite build --mode single",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "bash scripts/deploy.sh"
},
"devDependencies": {
"happy-dom": "^20.10.6",
"sass": "^1.101.0",
"typescript": "~7.0.2",
"vite": "^8.1.4",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.9"
},
"dependencies": {
"lucide-static": "^1.23.0"
}
}