-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "praises",
"private": true,
"version": "0.0.7",
"type": "module",
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix",
"prettier --write"
]
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "^1.5.6",
"@tauri-apps/plugin-store": "github:tauri-apps/tauri-plugin-store#v2",
"buffer": "^6.0.3",
"element-plus": "^2.7.2",
"microsoft-cognitiveservices-speech-sdk": "^1.36.0",
"pinia": "^2.1.7",
"tauri-plugin-fs-watch-api": "github:tauri-apps/tauri-plugin-fs-watch#v1",
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log#v1",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#v1",
"vue": "^3.3.4",
"vue-i18n": "9",
"vue-router": "^4.3.2",
"zod": "^3.23.6"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.5",
"@eslint/js": "^9.2.0",
"@iconify-json/ep": "^1.1.15",
"@iconify-json/mdi": "^1.1.67",
"@tauri-apps/cli": "^1",
"@types/node": "^20.12.10",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^9.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"globals": "^15.1.0",
"prettier": "^3.2.5",
"sass": "^1.77.0",
"typescript": "^5.0.2",
"typescript-eslint": "^7.8.0",
"unocss": "^0.61.0",
"unplugin-auto-import": "^0.17.5",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.0.0",
"vue-eslint-parser": "^9.4.2",
"vue-tsc": "^1.8.5"
}
}