-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.86 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.86 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "mdwrite",
"private": true,
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite dev --port 3000",
"build": "vite build",
"preview": "vite preview",
"dev:desktop": "concurrently -k -n VITE,ELECTRON -c cyan,magenta \"vite dev --port 3000\" \"wait-on http://localhost:3000 && cross-env VITE_DEV_SERVER_URL=http://localhost:3000 electron .\"",
"build:desktop": "vite build && electron-builder",
"pack:desktop": "vite build && electron-builder --dir",
"test": "vitest run",
"lint": "biome lint",
"format": "biome format --write",
"check": "biome check --write"
},
"dependencies": {
"@base-ui/react": "^1.0.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-java": "^6.0.2",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/language": "^6.12.1",
"@codemirror/state": "^6.5.3",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.39.5",
"@fontsource-variable/figtree": "^5.2.10",
"@hugeicons/core-free-icons": "^3.1.0",
"@hugeicons/react": "^1.1.3",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/router-plugin": "^1.132.0",
"@tiptap/extension-character-count": "^3.14.0",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-link": "3.14.0",
"@tiptap/extension-list": "^3.14.0",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-task-item": "^3.14.0",
"@tiptap/extension-task-list": "^3.14.0",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@tiptap/suggestion": "^3.14.0",
"@uiw/codemirror-theme-vscode": "^4.25.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3-force": "^3.0.0",
"date-fns": "^4.1.0",
"idb-keyval": "^6.2.2",
"lucide-react": "^0.562.0",
"nitro": "latest",
"react": "^19.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.0",
"react-force-graph-2d": "^1.29.1",
"shadcn": "^3.6.2",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.0.6",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.9.0",
"tw-animate-css": "^1.4.0",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@tanstack/devtools-vite": "^0.3.11",
"@tanstack/eslint-config": "^0.3.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/d3-force": "^3.0.10",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/wicg-file-system-access": "^2023.10.7",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^41.0.0",
"electron-builder": "^26.8.1",
"jsdom": "^27.0.0",
"prettier": "^3.5.3",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^3.0.5",
"wait-on": "^9.0.4",
"web-vitals": "^5.1.0"
},
"build": {
"appId": "com.mdwrite.app",
"productName": "MDWrite",
"files": [
"electron/**",
"package.json"
],
"extraResources": [
{
"from": ".output",
"to": ".output"
}
],
"mac": {
"category": "public.app-category.productivity"
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
]
}
}
}