-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.12 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.12 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
90
91
92
93
94
95
96
{
"name": "easyeditor",
"description": "EasyEditor - A simple Markdown editor",
"version": "1.6.6",
"type": "module",
"scripts": {
"dev": "vite",
"server": "vite --host --port 3024",
"setup-https": "./scripts/setup-https.sh",
"setup-https-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/setup-https.ps1",
"build": "tsc && vite build && node scripts/copy-metadata.js",
"build:web": "tsc && vite build --outDir dist-web",
"postbuild": "node scripts/copy-metadata.js",
"preview": "vite preview --port 3024",
"serve:prod": "node scripts/serve-dist.js",
"build:serve": "npm run build && npm run serve:prod",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"tauri": "tauri",
"tauri:dev": "WEBKIT_DISABLE_DMABUF_RENDERER=1 WEBKIT_DISABLE_COMPOSITING_MODE=1 tauri dev",
"tauri:build": "WEBKIT_DISABLE_DMABUF_RENDERER=1 WEBKIT_DISABLE_COMPOSITING_MODE=1 tauri build"
},
"author": "Ricardo Wagemaker <wagemra@gmail.com>",
"license": "MIT",
"dependencies": {
"@isomorphic-git/lightning-fs": "^4.6.2",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-http": "^2.5.5",
"@tauri-apps/plugin-shell": "^2.3.3",
"@twemoji/api": "^16.0.1",
"@types/gapi": "^0.0.47",
"@types/gapi.auth2": "^0.0.61",
"buffer": "^6.0.3",
"crypto-js": "^4.2.0",
"detect-port": "^2.1.0",
"express": "^5.1.0",
"file-saver": "^2.0.5",
"gapi-script": "^1.2.0",
"html2canvas": "^1.4.1",
"isomorphic-git": "^1.35.1",
"jsdom": "^28.1.0",
"jspdf": "^4.0.0",
"katex": "^0.16.28",
"lodash.debounce": "^4.0.8",
"mammoth": "^1.11.0",
"mermaid": "^11.12.0",
"nomnoml": "^1.7.0",
"path-browserify": "^1.0.1",
"plantuml-encoder": "^1.4.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-emoji": "^5.0.2",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"twemoji": "^14.0.2"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@playwright/test": "^1.55.1",
"@tauri-apps/cli": "^2.9.6",
"@types/crypto-js": "^4.2.2",
"@types/file-saver": "^2.0.7",
"@types/jest": "^30.0.0",
"@types/jsdom": "^27.0.0",
"@types/lodash.debounce": "^4.0.9",
"@types/mermaid": "^9.2.0",
"@types/node": "^24.10.4",
"@types/plantuml-encoder": "^1.4.2",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/turndown": "^5.0.6",
"@vitejs/plugin-react": "^5.0.3",
"@vitejs/plugin-react-swc": "^4.1.0",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"fast-check": "^4.4.0",
"globals": "^16.4.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"playwright": "^1.55.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"vite": "^7.1.7"
}
}