-
Notifications
You must be signed in to change notification settings - Fork 798
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.17 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
{
"name": "omniget",
"version": "0.9.0",
"description": "",
"type": "module",
"packageManager": "pnpm@10.29.3",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"tauri": "tauri",
"version:set": "node scripts/bump-version.js",
"generate:i18n-keys": "node scripts/generate-i18n-keys.js",
"check:i18n": "node scripts/generate-i18n-keys.js --strict",
"check:clippy-baseline": "node scripts/clippy-baseline.mjs --check",
"update:clippy-baseline": "node scripts/clippy-baseline.mjs --update",
"plugins:deploy": "node scripts/deploy-plugins-local.mjs",
"extension:sync": "node browser-extension/sync.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"license": "GPL-3.0",
"dependencies": {
"@fontsource-variable/bricolage-grotesque": "^5.2.10",
"@fontsource/dm-sans": "^5.2.8",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/inter": "^5.2.8",
"@kookyleo/graphviz-anywhere-web": "^0.1.8",
"@kookyleo/plantuml-little-web": "1.2026.2-3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.0",
"@tiptap/core": "^3.22.5",
"@tiptap/extension-bubble-menu": "^3.22.5",
"@tiptap/extension-code-block-lowlight": "^3.22.5",
"@tiptap/extension-drag-handle": "^3.22.5",
"@tiptap/extension-image": "^3.22.5",
"@tiptap/extension-link": "^3.22.5",
"@tiptap/extension-mathematics": "^3.22.5",
"@tiptap/extension-mention": "^3.22.5",
"@tiptap/extension-table": "^3.22.5",
"@tiptap/extension-table-cell": "^3.22.5",
"@tiptap/extension-table-header": "^3.22.5",
"@tiptap/extension-table-row": "^3.22.5",
"@tiptap/extension-task-item": "^3.22.5",
"@tiptap/extension-task-list": "^3.22.5",
"@tiptap/pm": "^3.22.5",
"@tiptap/starter-kit": "^3.22.5",
"@tiptap/suggestion": "^3.22.5",
"@types/cytoscape": "^3.31.0",
"abcjs": "^6.6.3",
"cytoscape": "^3.33.3",
"flowchart.js": "^1.18.0",
"highlight.js": "^11.10.0",
"hls.js": "^1.6.16",
"katex": "^0.16.11",
"lowlight": "^3.3.0",
"marked": "^14.1.3",
"markmap-lib": "^0.18.12",
"markmap-view": "^0.18.12",
"mermaid": "^11.4.1",
"sveltekit-i18n": "^2.4.2",
"tiptap-markdown": "^0.9.0",
"vidstack": "^0.6.15"
},
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.9.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/cli": "^2",
"@types/katex": "^0.16.7",
"@types/marked": "^6.0.0",
"@types/node": "^25.6.0",
"playwright": "^1.62.0",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "~5.6.2",
"vite": "^6.0.3",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1",
"vitest": "^4.1.4"
}
}