-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "openmarkdown",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"check": "cargo check && npm run build",
"qa:buttons": "node scripts/button_interaction_audit.mjs",
"smoke": "bash scripts/smoke.sh",
"release:audit": "node scripts/release_audit.mjs",
"release:manifest": "node scripts/generate_release_manifest.mjs",
"release:gate": "bash scripts/release_gate.sh",
"benchmark:large": "bash scripts/benchmark_large_file.sh",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "bash scripts/tauri_build_stable.sh",
"tauri:build:full": "tauri build"
},
"dependencies": {
"@lexical/headless": "^0.24.0",
"@lexical/markdown": "^0.24.0",
"@tauri-apps/api": "^2.0.0",
"echarts": "^5.6.0",
"katex": "^0.16.11",
"lexical": "^0.24.0",
"marked": "^17.0.2",
"mermaid": "^11.6.0",
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tauri-apps/cli": "^2.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.2",
"vite": "^6.0.5"
}
}