-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.9 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.9 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "lab-map",
"version": "0.4.0",
"description": "An interactive canvas-based visualizer for datacenter and lab infrastructure",
"type": "module",
"homepage": "https://lab-map.yush.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/aayusharyan/lab-map.git"
},
"bugs": {
"url": "https://github.com/aayusharyan/lab-map/issues"
},
"scripts": {
"dev": "concurrently \"vite\" \"node scripts/watcher.js\" --names \"vite,watch\" --prefix-colors \"cyan,green\"",
"build": "tsc -b && vite build",
"preview": "vite preview",
"watch": "node scripts/watcher.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"datacenter",
"data-center",
"infrastructure",
"network-diagram",
"topology",
"visualization",
"diagram",
"network-map",
"infrastructure-diagram",
"IT",
"hardware",
"asset-management",
"network-topology",
"server",
"cabling",
"documentation"
],
"author": {
"name": "Aayush Sinha",
"email": "hello@yush.dev",
"url": "https://yush.dev"
},
"license": "MIT",
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=24",
"pnpm": ">=9"
},
"dependencies": {
"@tabler/icons-react": "^3.40.0",
"ajv": "^8.18.0",
"chokidar": "^4.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"vis-network": "^9.1.9"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.1.2",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.57.1",
"vite": "^6.0.5"
}
}