-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.21 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.21 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
{
"name": "protoforge",
"description": "ProtoForge - A modern API development and testing tool",
"private": true,
"version": "0.4.5",
"type": "module",
"scripts": {
"dev": "vite",
"dev:tauri": "tauri dev",
"build": "tsc && vite build",
"build:tauri": "tauri build",
"build:debug": "tauri build --debug",
"preview": "vite preview",
"tauri": "tauri",
"version:set": "node scripts/sync-version.mjs",
"release:patch": "node scripts/sync-version.mjs patch --push",
"release:minor": "node scripts/sync-version.mjs minor --push",
"release:major": "node scripts/sync-version.mjs major --push",
"lint": "tsc --noEmit",
"clean": "rimraf dist src-tauri/target",
"icons:generate": "node scripts/generate-icons.mjs"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@fontsource-variable/geist": "^5.2.8",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/noto-sans-sc": "^5.2.10",
"@fontsource-variable/outfit": "^5.2.8",
"@fontsource-variable/roboto-flex": "^5.2.8",
"@monaco-editor/react": "^4.7.0",
"@tailwindcss/vite": "^4.2.1",
"@tanstack/react-virtual": "^3.13.23",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"@types/dagre": "^0.7.54",
"@xyflow/react": "^12.10.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"framer-motion": "^12.38.0",
"hls.js": "^1.6.15",
"html-to-image": "^1.11.13",
"i18next": "^25.8.20",
"lucide-react": "^0.577.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.8",
"react-resizable-panels": "^4.7.3",
"shadcn": "^4.1.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.1",
"tw-animate-css": "^1.4.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"sharp": "^0.34.5",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}