-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.63 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
{
"name": "markview",
"version": "0.1.0",
"packageManager": "bun@1.3.13",
"description": "Markview \u2014 markdown editor with real-time collab + share links. Web + native desktop (macOS, Windows, Linux). Local-first.",
"author": "Ahmet Bar\u0131\u015f G\u00fcnayd\u0131n <hi@barisgunaydin.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/abgnydn/markview"
},
"homepage": "https://github.com/abgnydn/markview",
"bugs": {
"url": "https://github.com/abgnydn/markview/issues"
},
"keywords": [
"markdown",
"editor",
"collaborative",
"yjs",
"webrtc",
"mermaid",
"katex",
"shiki",
"local-first",
"tauri"
],
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun --filter @markview/web dev",
"dev:desktop": "cd apps/desktop && bun run dev",
"build": "bun --filter @markview/web build",
"build:desktop": "cd apps/desktop && bun run build",
"lint": "eslint .",
"typecheck": "bun --filter '*' typecheck",
"test": "bun --filter @markview/web test",
"test:e2e": "bun --filter @markview/web test:e2e"
},
"devDependencies": {
"@markview/eslint-config": "workspace:*",
"eslint": "^10.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-markdown": "^6.5.2",
"@codemirror/language": "^6.12.4",
"@codemirror/language-data": "^6.5.2",
"@codemirror/search": "^6.7.1",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.8"
}
}