-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.28 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.28 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
{
"name": "mnemo",
"private": true,
"type": "module",
"scripts": {
"build": "moon run web:build",
"dev": "moon run web:dev",
"generate": "moon run web:generate",
"preview": "moon run web:preview",
"wasm:build": "moon run wasm:build",
"postinstall": "nuxt prepare",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"db:generate": "better-auth generate --config server/utils/auth/config.ts --output server/db/schema.ts && nuxt db generate"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@html2canvas/html2canvas": "^1.6.3",
"@internationalized/date": "^3.10.1",
"@internationalized/number": "^3.6.5",
"@libsql/client": "^0.17.0",
"@material/material-color-utilities": "npm:@ktibow/material-color-utilities-nightly@^0.4.1768930731000",
"@material/web": "^2.4.1",
"@paralleldrive/cuid2": "^3.3.0",
"@polar-sh/better-auth": "^1.6.4",
"@polar-sh/sdk": "^0.42.2",
"@replit/codemirror-vscode-keymap": "^6.0.2",
"@tanstack/vue-virtual": "^3.13.18",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/cli": "^2.10.1",
"@tauri-apps/plugin-cli": "^2.4.1",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"@vueuse/math": "14.1.0",
"@vueuse/router": "14.1.0",
"better-auth": "^1.4.17",
"crossws": "^0.4.3",
"defu": "^6.1.4",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.45.1",
"idb-keyval": "^6.2.2",
"interactjs": "^1.10.27",
"loro-codemirror": "^0.3.3",
"loro-crdt": "^1.10.5",
"lru-cache": "^11.2.5",
"material-symbols": "^0.40.2",
"mnemo-wasm": "workspace:*",
"nanotar": "^0.2.0",
"pdfjs-dist": "^5.4.530",
"reka-ui": "2.7.0",
"ts-pattern": "^5.9.0",
"ulid": "^3.0.2",
"unstorage": "^1.17.4",
"unwasm": "^0.5.3",
"valibot": "^1.2.0",
"vite-plugin-top-level-await": "^1.6.0",
"vue-pdf-embed": "^2.1.3"
},
"devDependencies": {
"@better-auth/cli": "^1.4.17",
"@cloudflare/workers-types": "^4.20260127.0",
"@moonrepo/cli": "^2.1.1",
"@nuxt/devtools": "^3.1.1",
"@nuxt/eslint": "1.13.0",
"@nuxt/fonts": "0.13.0",
"@nuxthub/core": "^0.10.5",
"@nuxtjs/color-mode": "4.0.0",
"@nuxtjs/i18n": "^10.2.1",
"@types/node": "^25.0.10",
"@unocss/nuxt": "66.6.0",
"@vueuse/components": "^14.1.0",
"@vueuse/nuxt": "^14.1.0",
"eslint-plugin-oxlint": "^1.42.0",
"nitropack": "^2.13.1",
"nuxt": "^4.4.2",
"nuxt-ssr-lit": "^1.6.32",
"oxfmt": "^0.27.0",
"oxlint": "^1.42.0",
"oxlint-tsgolint": "^0.11.2",
"sass": "^1.97.3",
"stylelint": "^17.0.0",
"stylelint-config-clean-order": "^8.0.0",
"stylelint-config-recommended-scss": "^17.0.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard-scss": "^17.0.0",
"typescript": "^5.9.3",
"unocss": "^66.6.0",
"vite-plugin-wasm": "^3.5.0",
"vue": "^3.5.27",
"wasm-pack": "^0.14.0",
"wrangler": "^4.60.0"
}
}