-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.94 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "osi-model-simulator",
"private": false,
"version": "0.1.0",
"description": "An interactive app that simulates the OSI model and shows how messages travel on the internet through the seven layers",
"author": "Roboticela <contact@roboticela.com>",
"license": "AGPL-3.0",
"homepage": "https://osi-model-simulator.roboticela.com",
"repository": {
"type": "git",
"url": "https://github.com/Roboticela/osi-model-simulator"
},
"keywords": [
"osi-model-simulator",
"osi-model",
"network-layers",
"networking",
"internet",
"message-transmission",
"tcp-ip",
"data-encapsulation",
"network-simulation",
"seven-layers",
"application-layer",
"presentation-layer",
"session-layer",
"transport-layer",
"network-layer",
"data-link-layer",
"physical-layer",
"cross-platform",
"desktop-app",
"tauri",
"tauri-app",
"react",
"typescript",
"open-source",
"agpl",
"educational",
"modern-ui"
],
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"tauri": "tauri",
"prebuild": "node scripts/update-year.cjs",
"build:desktop": "npm run build && npm run tauri build && node scripts/generate-checksums.cjs",
"build:android": "npm run tauri android build && node scripts/generate-checksums.cjs",
"build:ios": "npm run tauri ios build && node scripts/generate-checksums.cjs",
"build:all": "node scripts/build-all.cjs",
"checksums": "node scripts/generate-checksums.cjs",
"verify": "node scripts/verify-checksum.cjs"
},
"dependencies": {
"@hookform/resolvers": "^3.9.1",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-opener": "^2.0.0",
"@tauri-apps/plugin-window-state": "^2.4.1",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"framer-motion": "^12.29.0",
"jszip": "^3.10.1",
"lucide-react": "^0.563.0",
"png2icons": "^2.0.1",
"react": "^19.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.0",
"react-hook-form": "^7.54.2",
"react-router-dom": "^7.13.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"util": "^0.12.5",
"uzip-module": "^1.0.3",
"yup": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tauri-apps/cli": "^2.9.6",
"@types/jszip": "^3.4.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "npm:rolldown-vite@7.2.5",
"vite-plugin-node-polyfills": "^0.25.0"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}