-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.83 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.83 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
{
"name": "js_ts_runner",
"private": true,
"version": "0.1.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"test-release": "tauri build -b none",
"release": "tauri build",
"rust-localize": "cd ./src/localization/rust_i18n_transform/ && npm install && tsc && node ./dist/index.js",
"lint": "biome lint && biome format && biome check",
"lint-fix": "biome lint --write && biome format --write && biome check --write"
},
"dependencies": {
"@dnd-kit/sortable": "^10.0.0",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@monaco-editor/react": "^4.7.0",
"@tauri-apps/api": ">=2.3.0",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.1",
"@tauri-apps/plugin-process": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-updater": "^2.6.0",
"@tauri-apps/plugin-window-state": "github:tauri-apps/tauri-plugin-window-state#v2",
"antd": "^5.24.3",
"classnames": "^2.5.1",
"i18next": "^24.2.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.4.1",
"styled-components": "^6.1.15",
"typescript": "^5.8.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tauri-apps/cli": "^2.3.1",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.3.4",
"internal-ip": "^8.0.0",
"typescript": "^5.8.2",
"vite": "^6.2.1"
}
}