-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.99 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
{
"name": "obim",
"version": "1.0.0",
"description": "Markdown WYSIWYG editor with live inline preview",
"license": "MIT",
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"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",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "electron-vite build && electron-builder --mac --config",
"build:linux": "electron-vite build && electron-builder --linux --config"
},
"dependencies": {
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.6.2",
"@codemirror/highlight": "^0.19.8",
"@codemirror/lang-markdown": "^6.2.5",
"@codemirror/language-data": "^6.5.1",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.32.0",
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"@markdoc/markdoc": "^0.4.0",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"@replit/codemirror-indentation-markers": "^6.5.3",
"@uiw/react-codemirror": "^4.23.0",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"codemirror": "^5.65.17",
"debounce": "^2.2.0",
"emoji-toolkit": "^9.0.1",
"fs-extra": "^11.2.0",
"jotai": "^2.11.1",
"js-yaml": "^4.1.0",
"katex": "^0.16.21",
"lodash": "^4.17.21",
"lucide": "^0.486.0",
"lucide-react": "^0.475.0",
"markdown-it": "^14.1.0",
"mime-types": "^3.0.1",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.3.4"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@tailwindcss/postcss": "^4.1.10",
"@tailwindcss/typography": "^0.5.10",
"@types/babel__core": "^7.20.5",
"@types/lodash": "^4.14.202",
"@types/node": "^18.17.5",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"electron": "^25.6.0",
"electron-builder": "^24.6.3",
"electron-devtools-installer": "^4.0.0",
"electron-vite": "^1.0.27",
"eslint": "^8.57.1",
"postcss": "^8.5.6",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.89.2",
"tailwindcss": "^4.1.10",
"typescript": "^5.1.6",
"typescript-eslint": "^8.29.1",
"vite": "^4.5.14"
}
}