-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.49 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
{
"name": "onyx",
"version": "0.16.1",
"description": "Open source knowledge base and note-taking app",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"dev:web": "cross-env BUILD_TARGET=web vite",
"build:web": "cross-env BUILD_TARGET=web vite build",
"preview:web": "vite preview --outDir dist-web",
"tauri": "tauri",
"typecheck": "tsc --noEmit",
"postinstall": "patch-package"
},
"license": "MIT",
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.5.4",
"@codemirror/theme-one-dark": "^6.1.3",
"@floating-ui/dom": "^1.7.4",
"@milkdown/core": "^7.18.0",
"@milkdown/ctx": "^7.18.0",
"@milkdown/plugin-listener": "^7.18.0",
"@milkdown/plugin-upload": "^7.18.0",
"@milkdown/preset-commonmark": "^7.18.0",
"@milkdown/preset-gfm": "^7.18.0",
"@milkdown/prose": "^7.18.0",
"@milkdown/theme-nord": "^7.18.0",
"@milkdown/utils": "^7.18.0",
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.0.1",
"@nostrify/nostrify": "^0.48.3",
"@opencode-ai/sdk": "^1.1.28",
"@solidjs/router": "^0.15.4",
"@tauri-apps/plugin-biometric": "^2.3.2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-deep-link": "^2.4.6",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-haptics": "^2.3.2",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-shell": "^2.3.4",
"@tauri-apps/plugin-store": "^2.4.2",
"@xterm/addon-canvas": "^0.7.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"codemirror": "^6.0.2",
"dayjs": "^1.11.19",
"hyperformula": "^3.2.0",
"jszip": "^3.10.1",
"mammoth": "^1.11.0",
"nostr-tools": "^2.19.4",
"pdfjs-dist": "^5.5.207",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"solid-js": "^1.9.10",
"uuid": "^13.0.0",
"vis-data": "^8.0.3",
"vis-network": "^10.0.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/cli": "^2.9.6",
"@types/jszip": "^3.4.0",
"@types/uuid": "^10.0.0",
"cross-env": "^7.0.3",
"idb": "^8.0.3",
"patch-package": "^8.0.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-solid": "^2.11.10",
"workbox-window": "^7.4.1"
}
}