-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.05 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.05 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
{
"name": "jdnotes",
"private": true,
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"release": "powershell -ExecutionPolicy Bypass -File ./scripts/build-release.ps1",
"release:bat": "scripts\\build-release.bat",
"signer:generate": "tauri signer generate -w ./~/.tauri/jdnotes.key"
},
"dependencies": {
"@codemirror/lang-cpp": "^6.0.3",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.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-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.1",
"@codemirror/legacy-modes": "^6.5.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-notification": "^2.3.3",
"@tauri-apps/plugin-opener": "^2.0.0",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-sql": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tiptap/core": "^3.14.0",
"@tiptap/extension-bubble-menu": "^3.14.0",
"@tiptap/extension-code-block": "^3.14.0",
"@tiptap/extension-floating-menu": "^3.14.0",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-link": "^3.20.2",
"@tiptap/extension-placeholder": "^3.14.0",
"@tiptap/extension-table": "^3.20.4",
"@tiptap/extension-table-cell": "^3.20.4",
"@tiptap/extension-table-header": "^3.20.4",
"@tiptap/extension-table-row": "^3.20.4",
"@tiptap/extension-task-item": "^3.20.4",
"@tiptap/extension-task-list": "^3.20.4",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@uiw/codemirror-theme-tokyo-night": "^4.25.4",
"@uiw/react-codemirror": "^4.25.4",
"cmdk": "^1.1.1",
"framer-motion": "^12.24.10",
"html2canvas": "^1.4.1",
"jspdf": "^4.0.0",
"lucide-react": "^0.562.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1",
"tailwindcss": "^4.1.18",
"tiptap-markdown": "^0.9.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4"
},
"pnpm": {
"overrides": {
"@codemirror/state": "6.5.3"
}
}
}