-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.91 KB
/
package.json
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
{
"name": "inazuma",
"version": "0.3.1",
"type": "module",
"main": "dist/browser/main.js",
"author": "Iwata Hidetaka",
"license": "MIT",
"scripts": {
"clean": "rimraf --glob node_modules/.cache dist/* src/react/generated/* src-tauri/target",
"prebuild:iconbundle": "ts-node build/create-iconbundle.ts",
"prebuild:gitinfo": "ts-node build/generate-gitinfo.ts",
"generate-dts:bindings": "ts-node build/generate-bindings.ts",
"generate-dts:invoke": "ts-node build/generate-invoke.ts",
"generate-dts": "run-s generate-dts:*",
"format:frontend": "biome format --write src/react",
"format:tauri": "cargo fmt --manifest-path src-tauri/app/Cargo.toml --all",
"format": "run-s format:frontend format:tauri",
"lint": "biome lint src/react",
"check:ts": "tsc -p src/react/tsconfig.json --noEmit",
"check:tauri": "cargo check --manifest-path src-tauri/app/Cargo.toml",
"build:tailwind": "tailwindcss -i ./src/react/index.css -o ./src/react/generated/tailwind.css",
"build:ts": "env-cmd -f build/build.env vite build",
"build:frontend": "run-s prebuild:* generate-dts check:ts build:tailwind build:ts",
"build:tauri": "tauri build",
"test:tauri": "cargo test --manifest-path src-tauri/app/Cargo.toml",
"build": "run-s build:frontend build:tauri",
"watch:ts": "vite",
"watch:frontend": "run-p \"build:tailwind -- -w\" \"check:ts -- -w\" watch:ts",
"watch:tauri": "tauri dev",
"all": "run-s format lint clean build"
},
"dependencies": {
"@dnd-kit/core": "^6.1.0",
"@tauri-apps/api": "^2.0.0-beta.15",
"@types/node": "^22.2.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"buffer": "^6.0.3",
"chardet": "^2.0.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"iconv-lite": "^0.6.2",
"jotai": "^2.4.1",
"lodash": "^4.17.20",
"monaco-editor": "^0.50.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-transition-group": "^4.4.5",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
"redux": "^5.0.1",
"string_decoder": "^1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@iconify/json": "^2.2.233",
"@iconify/react": "^5.0.2",
"@iconify/utils": "^2.1.29",
"@mui/material": "^5.16.6",
"@tauri-apps/cli": "^2.0.0-rc.3",
"@types/chardet": "^0.8.3",
"@types/lodash": "^4.17.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
"@vitejs/plugin-react": "^4.3.1",
"env-cmd": "^10.1.0",
"handlebars": "^4.7.7",
"jotai-devtools": "^0.10.1",
"npm-run-all": "^4.1.5",
"postcss": "~8.4.31",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.7",
"ts-node": "^10.9.1",
"typescript": "^5.5.4",
"upath": "^2.0.1",
"vite": "^5.4.6"
}
}