-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.84 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.84 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "mc-vector",
"version": "2.0.59",
"private": true,
"description": "Minecraft Server Management App",
"author": "tukuyomi032",
"type": "module",
"scripts": {
"dev": "portless run vite",
"dev:plain": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "biome check --diagnostic-level=error src tests",
"check:fix": "biome check --write --diagnostic-level=error src",
"lint": "biome lint --diagnostic-level=error src",
"format": "biome format --write src",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"clean:artifacts": "rimraf dist build src-tauri/target node_modules/.vite",
"release:tag": "node scripts/release-tag.mjs",
"release:publish": "node scripts/release-publish.mjs",
"rustfmt": "cargo fmt --all",
"install:extensions": "node scripts/install-extensions.mjs",
"prepare": "lefthook install",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"typecheck:tests": "tsc -p tsconfig.tests.json --noEmit",
"test:typecheck": "tsc -p tsconfig.tests.json --noEmit",
"test:all": "pnpm check && pnpm test && cd src-tauri && cargo test",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui"
},
"dependencies": {
"@hookform/resolvers": "^5.9.1",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-context-menu": "^2.3.7",
"@radix-ui/react-dialog": "^1.1.23",
"@radix-ui/react-dropdown-menu": "^2.1.24",
"@radix-ui/react-popover": "^1.1.23",
"@radix-ui/react-progress": "^1.1.16",
"@radix-ui/react-scroll-area": "^1.2.18",
"@radix-ui/react-select": "^2.3.7",
"@radix-ui/react-switch": "^1.3.7",
"@radix-ui/react-tabs": "^1.1.21",
"@radix-ui/react-tooltip": "^1.2.16",
"@tanstack/react-query": "^5.102.8",
"@tanstack/react-virtual": "^3.14.10",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "~2.7.2",
"@tauri-apps/plugin-fs": "~2.5.1",
"@tauri-apps/plugin-global-shortcut": "^2.3.2",
"@tauri-apps/plugin-http": "~2.5.9",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "~2.5.4",
"@tauri-apps/plugin-os": "~2.3.2",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-shell": "~2.3.5",
"@tauri-apps/plugin-store": "~2.4.4",
"@tauri-apps/plugin-updater": "~2.10.1",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"framer-motion": "^13.1.1",
"lucide-react": "^1.37.0",
"monaco-editor": "^0.56.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-hook-form": "^7.87.0",
"react-markdown": "^10.1.0",
"recharts": "^3.10.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.8",
"tailwind-merge": "^3.6.0",
"zod": "^4.5.4",
"zustand": "^5.0.15"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@playwright/test": "^1.62.1",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@types/node": "^26.4.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"@vitejs/plugin-react": "^6.1.1",
"@vitest/ui": "^4.1.11",
"autoprefixer": "^10.5.4",
"jsdom": "^30.0.1",
"lefthook": "^2.1.12",
"portless": "^0.15.6",
"postcss": "^8.5.26",
"rimraf": "^6.1.3",
"tailwindcss": "^4.3.3",
"typescript": "~7.0.2",
"vite": "^8.2.2",
"vitest": "^4.1.11"
},
"packageManager": "pnpm@10.26.2",
"productName": "MC-Vector",
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"lefthook",
"sharp"
]
}
}