-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "QuickNote",
"private": true,
"version": "0.1.0",
"description": "A simple, fast, and lightweight note-taking application designed for quick access and ease of use.",
"author": "kaigiii <ken940702@gmail.com>",
"license": "CC-BY-NC-SA-4.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"build:web": "NODE_ENV=production vue-tsc --noEmit && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"dependencies": {
"@tauri-apps/api": "~1.5.3",
"i18next": "~23.11.2",
"i18next-browser-languagedetector": "~7.2.1",
"i18next-vue": "^3.0.0",
"lodash-es": "^4.17.21",
"pinia": "~2.1.7",
"sortablejs": "~1.15.2",
"vue": "~3.4.21"
},
"devDependencies": {
"@tauri-apps/cli": "~1.5.11",
"@types/lodash-es": "^4.17.12",
"@types/node": "^24.1.0",
"@types/sortablejs": "~1.15.8",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "~5.4.5",
"vite": "~5.2.10",
"vue-tsc": "^2.1.10"
}
}