-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.3 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
{
"name": "markdown-web",
"version": "2.15.0",
"description": "A modern, browser-based markdown editor that you can run in any directory. Edit .md files with live preview, auto-save, and a VS Code-inspired interface.",
"main": "dist/server/index.js",
"bin": {
"markdown-web": "./bin/markdown-web.js"
},
"files": [
"dist/",
"bin/",
"scripts/",
"README.md",
"SSL_SETUP.md",
"AGENTS.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vultuk/markdown-web.git"
},
"homepage": "https://github.com/vultuk/markdown-web#readme",
"bugs": {
"url": "https://github.com/vultuk/markdown-web/issues"
},
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "tsx watch server/index.ts",
"dev:client": "vite",
"build": "npm run build:client && npm run build:server",
"build:client": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node dist/server/index.js",
"start:https": "sudo node dist/server/https-server.js",
"setup-ssl": "sudo ./scripts/setup-ssl.sh",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "vitest"
},
"keywords": [
"markdown",
"editor",
"web",
"typescript",
"react",
"cli",
"npx",
"browser",
"live-preview",
"auto-save",
"vscode-theme",
"file-explorer",
"developer-tools"
],
"author": {
"name": "Vultuk",
"url": "https://github.com/vultuk"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"@ngrok/ngrok": "^1.4.0",
"codex": "^0.2.3",
"codex-cli": "^0.1.3",
"express": "^4.18.2",
"highlight.js": "^11.9.0",
"html2pdf.js": "^0.10.3",
"marked": "^16.2.0",
"mermaid": "^10.9.1",
"open": "^9.1.0",
"openai": "^4.104.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"rehype-highlight": "^6.0.0",
"remark-gfm": "^4.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vitest": "^3.2.4"
}
}