-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.27 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.27 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
97
{
"name": "text-zen",
"version": "1.3.3",
"description": "A Markdown editor application",
"main": "./out/main/index.js",
"author": "hi@moeki.org",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/TextZen/TextZen.git"
},
"scripts": {
"test": "electron-vite build && playwright test",
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"postinstall": "electron-builder install-app-deps",
"build": "electron-vite build && electron-builder --mac",
"build:local": "electron-vite build"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/language-data": "^6.5.1",
"@codemirror/state": "^6.5.2",
"@codemirror/view": "^6.36.4",
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@headlessui/react": "^2.2.1",
"@tailwindcss/vite": "^4.0.14",
"@types/katex": "^0.16.7",
"@types/lodash": "^4.17.16",
"@types/react-window": "^1.8.8",
"@types/tailwindcss": "^3.0.11",
"@uiw/react-codemirror": "^4.23.10",
"@vscode/ripgrep": "^1.15.11",
"chokidar": "^4.0.3",
"codemirror": "^6.0.1",
"dotenv": "^16.4.7",
"electron-log": "^5.3.3",
"electron-store": "^10.0.1",
"execa": "^9.5.2",
"fuse.js": "^7.1.0",
"html-react-parser": "^5.2.3",
"interactjs": "^1.10.27",
"katex": "^0.16.21",
"lodash": "^4.17.21",
"mermaid": "^11.6.0",
"minify": "^14.0.0",
"react-intl": "^7.1.10",
"react-material-symbols": "^4.4.0",
"react-router": "^7.4.1",
"react-textarea-autosize": "^8.5.9",
"react-window": "^1.8.11",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"replace-in-file": "^8.3.0",
"scroll-into-view-if-needed": "^3.1.0",
"tailwindcss": "^4.0.14",
"thememirror": "^2.0.1",
"unified": "^11.0.5",
"update-electron-app": "^3.1.1",
"use-debounce": "^10.0.4"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@iconify-json/gg": "^1.2.2",
"@playwright/test": "^1.51.1",
"@types/electron-store": "^3.2.2",
"@types/node": "^22.15.18",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"electron": "^37.2.4",
"electron-builder": "^26.0.12",
"electron-notarize": "^1.2.2",
"electron-playwright-helpers": "^1.7.1",
"electron-vite": "^3.1.0",
"eslint": "^9.20.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"prettier": "^3.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.3",
"vite": "^6.2.5"
},
"packageManager": "pnpm@10.11.0+sha512.6540583f41cc5f628eb3d9773ecee802f4f9ef9923cc45b69890fb47991d4b092964694ec3a4f738a420c918a333062c8b925d312f42e4f0c263eb603551f977"
}