-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.78 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.78 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
{
"name": "switchshuttle",
"version": "2.1.0",
"description": "SwitchShuttle is a cross-platform system tray application that allows users to run predefined commands in various terminal applications. It supports macOS, Windows, and Linux, offering a simple and customizable way to manage and execute your frequently used commands.",
"type": "module",
"scripts": {
"generate:html": "node generate-html.cjs",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch",
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:dev:fast": "CARGO_INCREMENTAL=1 RUSTFLAGS='-C target-cpu=native' tauri dev",
"tauri:build": "tauri build",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:watch": "vitest --watch",
"type-check": "vue-tsc --noEmit",
"lint": "eslint src --ext .vue,.js,.ts,.jsx,.tsx --report-unused-disable-directives --max-warnings 0",
"lint:fix": "eslint src --ext .vue,.js,.ts,.jsx,.tsx --fix",
"format": "prettier --write src",
"format:check": "prettier --check src"
},
"author": "",
"license": "ISC",
"dependencies": {
"@tauri-apps/api": "^2.8.0",
"@tauri-apps/plugin-autostart": "^2.5.0",
"@tauri-apps/plugin-cli": "^2.4.0",
"@tauri-apps/plugin-dialog": "^2.4.0",
"@tauri-apps/plugin-fs": "^2.4.2",
"@tauri-apps/plugin-global-shortcut": "^2.3.0",
"@tauri-apps/plugin-log": "^2.7.0",
"@tauri-apps/plugin-notification": "^2.3.1",
"@tauri-apps/plugin-opener": "^2.5.0",
"@tauri-apps/plugin-os": "^2.3.1",
"@tauri-apps/plugin-positioner": "^2.3.0",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-shell": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.0",
"@tauri-apps/plugin-updater": "^2.9.0",
"vue": "^3.5.17",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.11",
"@tauri-apps/cli": "^2.8.4",
"@vitejs/plugin-vue": "^5.2.4",
"@vitest/ui": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.21",
"eslint": "^9.17.0",
"eslint-plugin-vue": "^9.28.0",
"eslint-config-prettier": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"jsdom": "^25.0.1",
"marked": "^12.0.2",
"postcss": "^8.5.6",
"prettier": "^3.4.2",
"standard-version": "^9.5.0",
"tailwindcss": "^4.1.11",
"typescript": "5.8.3",
"vite": "^6.3.5",
"vite-plugin-vue-devtools": "^7.7.7",
"vitest": "^2.1.8",
"vue-tsc": "^2.2.10"
},
"packageManager": "pnpm@9.15.4"
}