-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.3 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
{
"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": "PolyForm-Noncommercial-1.0.0",
"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": ">=18"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && vite build --mode single",
"build:web": "tsc && vite build",
"build:single": "tsc && vite build --mode single",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"happy-dom": "^20.9.0",
"sass": "^1.100.0",
"typescript": "~5.9.3",
"vite": "^8.1.0",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.7"
},
"dependencies": {
"lucide-static": "^1.17.0"
}
}