-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.53 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.53 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
{
"name": "tyutool",
"private": true,
"version": "3.0.13",
"type": "module",
"scripts": {
"clean": "node -e \"try { require('fs').rmSync('dist', { recursive: true, force: true }); } catch (e) { if (e && e.code !== 'ENOENT') throw e; }\"",
"prebuild": "pnpm run clean",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"lint": "eslint src --ext .ts,.vue",
"lint:fix": "eslint src --ext .ts,.vue --fix",
"format": "prettier --write 'src/**/*.{ts,vue,json}'",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"prepare:icons": "pnpm exec tsx scripts/generate-icon-source.ts && pnpm exec tauri icon scripts/icon-source.png -o src-tauri/icons",
"build:gui": "pnpm run build && tauri build",
"release:cli": "pnpm exec tsx scripts/release-cli.ts",
"release:gui": "pnpm exec tsx scripts/release-gui.ts",
"version:set": "node scripts/bump-version.mjs",
"dev:web": "bash scripts/dev-web.sh"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"splitpanes": "^4.0.4",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/vue-fontawesome": "^3.1.3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-log": "^2.8.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.2",
"@tauri-apps/plugin-updater": "^2.10.0",
"pinia": "^3.0.4",
"vue": "^3.5.13",
"vue-i18n": "^9.14.5",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/cli": "^2",
"@types/node": "^25.6.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^3.2.4",
"daisyui": "^5.5.19",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.4.0",
"happy-dom": "^17.6.3",
"jsdom": "^29.0.2",
"lefthook": "^2.1.4",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vitest": "^3.0.5",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^2.1.10"
}
}