-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.82 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.82 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
{
"name": "forgeterm",
"private": true,
"version": "0.1.3",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"rust:fmt:check": "cargo fmt --manifest-path src-tauri/Cargo.toml --all -- --check",
"rust:clippy": "cargo clippy --manifest-path src-tauri/Cargo.toml --all-targets -- -D warnings",
"rust:test": "cargo test --manifest-path src-tauri/Cargo.toml",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build && pnpm rust:fmt:check && pnpm rust:clippy && pnpm rust:test",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@radix-ui/react-slot": "^1.1.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-opener": "^2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/xterm": "^5.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-resizable-panels": "^2.1.7",
"shadcn": "^2.0.0",
"tailwind-merge": "^2.5.5",
"tw-animate-css": "^1.3.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@tailwindcss/vite": "^4.1.3",
"@tauri-apps/cli": "^2",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@types/node": "^22.13.4",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.19.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.18",
"globals": "^15.14.0",
"jsdom": "^26.0.0",
"tailwindcss": "^4.1.3",
"typescript": "~5.8.3",
"typescript-eslint": "^8.22.0",
"vite": "^7.0.4",
"vitest": "^3.0.5"
}
}