-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.35 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
{
"name": "handwrite-md-studio",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "node scripts/build-all.mjs",
"build:web": "npm run typecheck && vite build && node scripts/write-sites-worker.mjs",
"verify:web-sync": "node scripts/verify-web-sync.mjs",
"typecheck": "tsc --noEmit && tsc --noEmit -p tsconfig.strict.json",
"typecheck:strict": "tsc --noEmit -p tsconfig.strict.json",
"macos:sync": "npm run build:web && node scripts/sync-macos-web.mjs",
"macos:build": "sh macos/scripts/build-release.sh",
"windows:build": "powershell -NoProfile -ExecutionPolicy Bypass -File windows/scripts/build-release.ps1",
"windows:build:arm64": "powershell -NoProfile -ExecutionPolicy Bypass -File windows/scripts/build-release.ps1 -Runtime win-arm64",
"preview": "vite preview --host 0.0.0.0",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"dompurify": "^3.2.6",
"katex": "^0.17.0",
"latex.js": "^0.12.6",
"marked": "^15.0.12",
"marked-katex-extension": "^5.1.10",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.5.2",
"typescript": "^5.8.3",
"vite": "^6.3.5",
"vitest": "^3.2.7"
}
}