-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.61 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
{
"name": "domd",
"version": "0.5.0",
"private": true,
"description": "DOMD — a from-scratch WYSIWYG Markdown editor",
"author": "Jayden Wang",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "next experimental-analyze --output && cd .next/diagnostics/analyze && python3 -m http.server 3000 --bind 0.0.0.0",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@do-md/commands": "^0.1.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-deep-link": "^2.4.8",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@vercel/analytics": "^2.0.1",
"daisyui": "^5.5.19",
"dexie": "^4.0.11",
"diff-match-patch": "^1.0.5",
"i18next": "^25.10.10",
"immer": "^11.1.4",
"js-beautify": "^2.0.3",
"nanoid": "^5.1.7",
"next": "16.2.3",
"prismjs": "^1.30.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "^16.6.6",
"yjs": "^13.6.31"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tauri-apps/cli": "^2.10.1",
"@types/diff-match-patch": "^1.0.36",
"@types/js-beautify": "^1.14.3",
"@types/node": "20.19.43",
"@types/prismjs": "^1.26.6",
"@types/react": "19.2.17",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}