-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.33 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.33 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
{
"name": "mdbrowse",
"version": "1.0.0",
"type": "module",
"description": "A markdown-first browser that prioritizes markdown content",
"scripts": {
"build:toolbar": "cd src/toolbar-svelte && bunx vite build",
"start": "bun run build:toolbar && MACOSX_DEPLOYMENT_TARGET=14.0 electrobun build && electrobun dev",
"build": "bun run build:toolbar && MACOSX_DEPLOYMENT_TARGET=14.0 electrobun build --env=stable",
"build:stable": "bun run build:toolbar && MACOSX_DEPLOYMENT_TARGET=14.0 electrobun build --env=stable",
"build:stable:win": "bun run build:toolbar && electrobun build --env=stable --targets=win-x64",
"dev:toolbar": "cd src/toolbar-svelte && bunx vite build --watch",
"start:shim": "cd src/toolbar-svelte && bunx vite dev --host",
"test:turndown": "bun run scripts/turndown.test.ts",
"test:comparison": "bun run scripts/turndown-comparison.test.ts",
"test": "bun run scripts/turndown.test.ts && bun run scripts/turndown-comparison.test.ts"
},
"dependencies": {
"electrobun": "^1.2.1-beta.3",
"marked": "^15.0.0",
"turndown": "^7.2.0",
"turndown-plugin-gfm": "^1.0.2"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tsconfig/svelte": "^5.0.4",
"@types/turndown": "^5.0.5",
"svelte": "^5.16.0",
"typescript": "^5.7.2",
"vite": "^6.0.7"
}
}