-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "nuxtor",
"type": "module",
"version": "1.1.1",
"private": true,
"packageManager": "[email protected]",
"description": "Starter template for Nuxt 3 and Tauri 2",
"author": "Nicola Spadari",
"license": "MIT",
"engines": {
"node": ">=23"
},
"scripts": {
"dev": "nuxt dev",
"generate": "nuxt generate",
"preinstall": "npx only-allow pnpm",
"postinstall": "nuxt prepare",
"lint": "eslint . --fix",
"bump": "bumpp",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug"
},
"dependencies": {
"@tauri-apps/api": ">=2.1.1",
"@tauri-apps/plugin-fs": "^2.2.0",
"@tauri-apps/plugin-notification": "^2.2.0",
"@tauri-apps/plugin-os": "^2.2.0",
"@tauri-apps/plugin-shell": "^2.2.0",
"@tauri-apps/plugin-store": "^2.2.0",
"nuxt": "^3.15.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@nuxt/eslint": "^0.7.4",
"@nuxt/fonts": "^0.10.3",
"@nuxt/icon": "^1.10.3",
"@tauri-apps/cli": ">=2.1.0",
"@unocss/eslint-plugin": "^0.65.3",
"@unocss/nuxt": "^0.65.3",
"@vueuse/core": "^12.3.0",
"@vueuse/nuxt": "^12.3.0",
"bumpp": "^9.9.2",
"eslint": "9.17.0",
"nuxt-svgo": "^4.0.10",
"sass": "^1.83.0",
"typescript": "^5.7.2"
}
}