-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.49 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
{
"name": "dar-to-oar",
"version": "1.1.0",
"private": true,
"description": "Converter",
"homepage": "https://github.com/SARDONYX-sard/dar-to-oar",
"license": "MIT",
"workspaces": [
"gui/frontend"
],
"type": "module",
"types": "modules",
"scripts": {
"build": "rimraf ./gui/frontend/dist && tauri build --no-bundle -- --profile release-no-lto",
"build:release": "rimraf ./gui/frontend/dist && tauri build --no-bundle -- --profile release",
"build:front": "npm --workspace gui/frontend run build:front",
"build:icons": "tauri icon ./gui/backend/icons/icon.svg",
"dev": "tauri dev",
"dev:front": "npm --workspace gui/frontend run dev:front",
"fmt:front": "vp fmt --ignore-path ./.gitignore",
"fmt:back": "cargo +nightly fmt --all",
"fmt": "npm run fmt:front && npm run fmt:back",
"lint": "vp lint ./ && cargo clippy --workspace",
"lint:fix": "npm run fmt && vp check ./ --fix && cargo clippy --workspace --fix --allow-staged --allow-dirty",
"tauri": "tauri",
"test": "npm --workspace gui/frontend run test"
},
"devDependencies": {
"@tauri-apps/cli": "2.11.2",
"@types/node": "25.9.3",
"rimraf": "^6",
"typescript": "6.0.3",
"vite-plus": "^0.2.0",
"vitest": "4.1.9",
"why-is-node-running": "^3.2.2"
},
"overrides": {
"monaco-editor": "0.49.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "4.1.9"
},
"packageManager": "npm@11.5.2"
}