-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
127 lines (127 loc) · 4.36 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "matcha",
"private": true,
"version": "0.4.6",
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:app": "tauri dev",
"dev:web": "vite dev",
"build": "tauri build",
"build:app": "tauri build",
"build:web": "vue-tsc --noEmit && vite build",
"preview:web": "vite preview",
"tauri": "tauri",
"typecheck": "vue-tsc --noEmit",
"lint": "npm run lint:js && npm run lint:style",
"lint:fix": "npm run lint:js:fix && npm run lint:style:fix",
"lint:js": "eslint \"**/*.{js,jsx,ts,tsx,cjs,mjs,vue}\"",
"lint:js:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx,cjs,mjs,vue}\"",
"lint:style": "stylelint \"**/*.{css,vue}\" --ignore-path .gitignore",
"lint:style:fix": "stylelint --fix \"**/*.{css,vue}\" --ignore-path .gitignore",
"lint:rs": "cargo clippy --manifest-path ./src-tauri/Cargo.toml --all-targets --all-features -- -D warnings",
"lint:rs:fix": "cargo fix --manifest-path ./src-tauri/Cargo.toml",
"format:rs": "cargo fmt --manifest-path ./src-tauri/Cargo.toml --all",
"prepare": "node .husky/install.js"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"@highlightjs/vue-plugin": "^2.1.0",
"@msgpack/msgpack": "2.8.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.3",
"@tauri-apps/plugin-http": "^2.0.1",
"@tauri-apps/plugin-log": "^2.0.1",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.1",
"@tauri-apps/plugin-updater": "^2.0.0",
"@tauri-apps/plugin-websocket": "^2.0.0",
"@unocss/reset": "^0.65.0",
"@vee-validate/zod": "^4.14.7",
"@vueuse/core": "^12.0.0",
"@vueuse/rxjs": "^12.0.0",
"class-variance-authority": "^0.7.1",
"clipboard": "^2.0.11",
"dayjs": "^1.11.13",
"dexie": "^4.0.10",
"highlight.js": "^11.10.0",
"js-base64": "^3.7.7",
"linkify-string": "^4.1.4",
"linkifyjs": "^4.1.4",
"lucide-vue-next": "^0.464.0",
"mime": "^4.0.4",
"overlayscrollbars": "^2.10.1",
"overlayscrollbars-vue": "^0.5.9",
"pinia": "2.1.7",
"pinia-plugin-persistedstate": "^4.1.3",
"radix-vue": "^1.9.10",
"tailwind-merge": "^2.5.5",
"tributejs": "^5.1.3",
"url-metadata": "^4.1.1",
"vee-validate": "^4.14.7",
"vue": "^3.5.13",
"vue-inline-svg": "^3.1.4",
"vue-markdown-render": "^2.2.1",
"vue-router": "^4.5.0",
"vue-sonner": "^1.3.0",
"vue3-video-play": "1.3.1-beta.6",
"wavesurfer.js": "^7.8.10",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.16.0",
"@iconify-json/carbon": "^1.2.4",
"@stylistic/eslint-plugin": "^2.11.0",
"@stylistic/stylelint-config": "^2.0.0",
"@tauri-apps/cli": "^2.1.0",
"@types/node": "^22.10.1",
"@unocss/eslint-config": "^0.65.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitejs/plugin-vue-jsx": "^4.1.1",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"@vue-macros/eslint-config": "^0.7.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-unicorn": "^56.0.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"happy-dom": "^15.11.7",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss-nesting": "^13.0.1",
"stylelint": "^16.11.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"typescript": "~5.6.3",
"typescript-eslint": "~8.15.0",
"unocss": "^0.65.0",
"unocss-preset-animations": "^1.1.0",
"unocss-preset-scrollbar": "^0.3.1",
"unocss-preset-shadcn": "^0.3.1",
"unplugin-auto-import": "^0.18.6",
"unplugin-info": "^1.2.1",
"unplugin-turbo-console": "^1.10.6",
"unplugin-vue-components": "^0.27.5",
"unplugin-vue-macros": "^2.13.4",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.11",
"vite-plugin-vue-devtools": "^7.6.7",
"vite-plugin-vue-meta-layouts": "^0.5.1",
"vitest": "^2.1.8",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"engines": {
"node": ">=22.11.0"
},
"packageManager": "[email protected]"
}