-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.93 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.93 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
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
{
"name": "vsyncnotes",
"version": "0.2.0",
"description": "Private, offline-first notes with E2E encryption and multi-device sync",
"author": "Guillermo Valentín",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/masweb/vsyncnotes.git"
},
"keywords": ["notes", "e2ee", "encryption", "tauri", "webdav", "offline-first"],
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test": "vitest run --project unit",
"test:unit": "vitest --project unit",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "run-s lint:*",
"lint:oxlint": "oxlint . --fix",
"lint:eslint": "eslint . --fix --cache",
"format": "prettier --write --experimental-cli src/",
"tauri": "tauri"
},
"dependencies": {
"@coreui/coreui": "^5.7.1",
"@coreui/vue": "^5.8.0",
"@tabler/icons-vue": "^3.44.0",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "~2.5.1",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-sql": "~2.4.0",
"@tauri-apps/plugin-updater": "~2.10.1",
"@tiptap/extension-bold": "^3.23.6",
"@tiptap/extension-bullet-list": "^3.23.6",
"@tiptap/extension-character-count": "^3.23.6",
"@tiptap/extension-code": "^3.23.6",
"@tiptap/extension-code-block-lowlight": "^3.23.6",
"@tiptap/extension-color": "^3.23.6",
"@tiptap/extension-document": "^3.23.6",
"@tiptap/extension-hard-break": "^3.23.6",
"@tiptap/extension-heading": "^3.23.6",
"@tiptap/extension-highlight": "^3.23.6",
"@tiptap/extension-history": "^3.23.6",
"@tiptap/extension-horizontal-rule": "^3.23.6",
"@tiptap/extension-image": "^3.23.6",
"@tiptap/extension-italic": "^3.23.6",
"@tiptap/extension-link": "^3.23.6",
"@tiptap/extension-list-item": "^3.23.6",
"@tiptap/extension-ordered-list": "^3.23.6",
"@tiptap/extension-paragraph": "^3.23.6",
"@tiptap/extension-placeholder": "^3.23.6",
"@tiptap/extension-strike": "^3.23.6",
"@tiptap/extension-table": "^3.23.6",
"@tiptap/extension-table-cell": "^3.23.6",
"@tiptap/extension-table-header": "^3.23.6",
"@tiptap/extension-table-row": "^3.23.6",
"@tiptap/extension-task-item": "^3.23.6",
"@tiptap/extension-task-list": "^3.23.6",
"@tiptap/extension-text": "^3.23.6",
"@tiptap/extension-text-align": "^3.23.6",
"@tiptap/extension-text-style": "^3.23.6",
"@tiptap/extension-underline": "^3.23.6",
"@tiptap/vue-3": "^3.23.6",
"lowlight": "^3.3.0",
"pinia": "^3.0.4",
"prosemirror-state": "^1.4.4",
"sortablejs": "^1.15.7",
"splitpanes": "^4.1.2",
"vee-validate": "^4.15.1",
"vue": "^3.5.34",
"vue-i18n": "^11.4.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@tsconfig/node24": "^24.0.4",
"@types/jsdom": "^28.0.3",
"@types/node": "^24.12.4",
"@types/sortablejs": "^1.15.9",
"@vitejs/plugin-vue": "^6.0.7",
"@vitest/browser-playwright": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"@vitest/eslint-plugin": "^1.6.18",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.10",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-oxlint": "^1.67.0",
"eslint-plugin-vue": "^10.9.1",
"jiti": "^2.7.0",
"jsdom": "^27.4.0",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.41.0",
"oxlint": "^1.67.0",
"prettier": "3.8.1",
"sass-embedded": "^1.100.0",
"typescript": "~5.9.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^31.1.0",
"vite": "^8.0.14",
"vite-plugin-vue-devtools": "^8.1.2",
"vitest": "^4.1.7",
"vue-tsc": "^3.3.2"
},
"engines": {
"node": "^20.19.0 || >=24.13.0"
},
"packageManager": "pnpm@10.33.2"
}