-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.7 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.7 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
76
77
78
79
80
{
"name": "kanri",
"private": true,
"version": "0.8.2",
"description": "Offline-first Kanban board desktop app",
"author": "trobonox <hello@trobo.dev>",
"license": "GPL-3.0",
"type": "module",
"scripts": {
"init:armv7": "docker build . -t rust_cross_compile/armv7 -f Dockerfile.armv7",
"init:arm64": "docker build . -t rust_cross_compile/arm64 -f Dockerfile.arm64",
"build:armv7": "nuxt generate && docker run -t -v `pwd`:/app rust_cross_compile/armv7",
"build:arm64": "nuxt generate && docker run -t -v `pwd`:/app rust_cross_compile/arm64",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint": "eslint . --fix",
"embed-licenses": "node ./scripts/embed-license-reports.js"
},
"devDependencies": {
"@nuxt/eslint": "1.12.1",
"@nuxt/eslint-config": "1.12.1",
"@nuxtjs/i18n": "10.2.1",
"@nuxtjs/tailwindcss": "^6.14.0",
"@tauri-apps/cli": "2.10.1",
"@types/node": "25.0.3",
"@vue/compiler-sfc": "3.5.26",
"@vueuse/components": "14.1.0",
"@vueuse/core": "14.1.0",
"@vueuse/nuxt": "14.1.0",
"eslint": "9.39.2",
"eslint-plugin-tailwindcss": "^3.18.2",
"nuxt": "4.2.2",
"postcss": "^8.4",
"postcss-custom-properties": "^14.0.4",
"rollup": "4.55.1",
"rollup-plugin-license": "^3.0.1",
"tailwindcss": "3.4.19",
"typescript": "5.9.3"
},
"dependencies": {
"@eslint/eslintrc": "3.3.3",
"@heroicons/vue": "2.2.0",
"@paralleldrive/cuid2": "3.0.6",
"@phosphor-icons/vue": "^2.1.6",
"@pinia/nuxt": "0.11.3",
"@popperjs/core": "^2.11.8",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-log": "2.8.0",
"@tauri-apps/plugin-opener": "~2",
"@tauri-apps/plugin-os": "2.3.2",
"@tauri-apps/plugin-store": "2.4.2",
"@tiptap/core": "^2.10.3",
"@tiptap/extension-bubble-menu": "^2.10.3",
"@tiptap/extension-text-align": "^2.10.3",
"@tiptap/extension-text-style": "^2.10.3",
"@tiptap/extension-typography": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@tiptap/vue-3": "^2.10.3",
"@vojtechlanka/vue-tags-input": "^3",
"mitt": "3.0.1",
"pinia": "3.0.4",
"radix-vue": "1.9.17",
"v-calendar": "3.1.2",
"vue": "3.5.26",
"vue-dragscroll": "^4.0.5",
"vue3-smooth-dnd": "0.0.6",
"zod": "3.25.6"
},
"resolutions": {
"vite": "^6.0.0",
"esbuild": "^0.25.0",
"chokidar": "^3.6.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}