-
Notifications
You must be signed in to change notification settings - Fork 926
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 6.34 KB
/
Copy pathpackage.json
File metadata and controls
164 lines (164 loc) · 6.34 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "note-gen",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack -p 3456 -H 0.0.0.0",
"build": "next build --turbopack && pnpm build:prune-maps",
"build:prune-maps": "node -e \"const fs=require('fs'),path=require('path');const roots=['out','.next'];function walk(dir){if(!fs.existsSync(dir))return;for(const entry of fs.readdirSync(dir,{withFileTypes:true})){const file=path.join(dir,entry.name);if(entry.isDirectory())walk(file);else if(entry.isFile()){if(entry.name.endsWith('.map'))fs.rmSync(file,{force:true});else if(entry.name.endsWith('.js')||entry.name.endsWith('.css')){const text=fs.readFileSync(file,'utf8');const next=text.replace(/\\n?\\/\\/# sourceMappingURL=[^\\n\\r]*/g,'').replace(/\\/\\*# sourceMappingURL=[^*]*\\*\\//g,'');if(next!==text)fs.writeFileSync(file,next);}}}}roots.forEach(walk);\"",
"start": "next start --turbopack -p 3456",
"lint": "next lint",
"tauri": "tauri",
"docs:build": "npm --prefix ./docs run build",
"sync-version": "./scripts/sync-version.sh",
"ios-build": "npm run sync-version && pnpm tauri ios build --open"
},
"dependencies": {
"@antv/infographic": "^0.2.7",
"@codemirror/commands": "^6.7.1",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^3.9.1",
"@octokit/core": "^6.1.2",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-hover-card": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-radio-group": "^1.2.1",
"@radix-ui/react-scroll-area": "^1.2.6",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@sereneinserenade/tiptap-search-and-replace": "^0.1.1",
"@tauri-apps/api": ">=2.0.0",
"@tauri-apps/plugin-clipboard-manager": "~2",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2",
"@tauri-apps/plugin-global-shortcut": "~2.2.0",
"@tauri-apps/plugin-http": "~2.3.0",
"@tauri-apps/plugin-opener": "^2.4.0",
"@tauri-apps/plugin-os": "~2.2.1",
"@tauri-apps/plugin-process": "~2.2.1",
"@tauri-apps/plugin-shell": "~2",
"@tauri-apps/plugin-sql": "~2",
"@tauri-apps/plugin-store": "~2",
"@tauri-apps/plugin-updater": "~2",
"@tauri-apps/plugin-window-state": "~2",
"@tiptap/core": "^3.19.0",
"@tiptap/extension-bubble-menu": "^3.19.0",
"@tiptap/extension-character-count": "^3.19.0",
"@tiptap/extension-code-block-lowlight": "^3.19.0",
"@tiptap/extension-collaboration": "3.19.0",
"@tiptap/extension-color": "^3.19.0",
"@tiptap/extension-drag-handle": "3.19.0",
"@tiptap/extension-dropcursor": "^3.19.0",
"@tiptap/extension-floating-menu": "^3.19.0",
"@tiptap/extension-highlight": "^3.19.0",
"@tiptap/extension-horizontal-rule": "^3.19.0",
"@tiptap/extension-image": "^3.19.0",
"@tiptap/extension-link": "^3.19.0",
"@tiptap/extension-mathematics": "^3.19.0",
"@tiptap/extension-mention": "^3.19.0",
"@tiptap/extension-node-range": "3.19.0",
"@tiptap/extension-placeholder": "^3.19.0",
"@tiptap/extension-table": "^3.19.0",
"@tiptap/extension-table-cell": "^3.19.0",
"@tiptap/extension-table-header": "^3.19.0",
"@tiptap/extension-table-row": "^3.19.0",
"@tiptap/extension-task-item": "^3.19.0",
"@tiptap/extension-task-list": "^3.19.0",
"@tiptap/extension-text-align": "^3.19.0",
"@tiptap/extension-text-style": "^3.19.0",
"@tiptap/extension-typography": "^3.19.0",
"@tiptap/extension-underline": "^3.19.0",
"@tiptap/extension-unique-id": "^3.19.0",
"@tiptap/extension-youtube": "^3.19.0",
"@tiptap/markdown": "^3.19.0",
"@tiptap/pm": "^3.19.0",
"@tiptap/react": "^3.19.0",
"@tiptap/starter-kit": "^3.19.0",
"@tiptap/suggestion": "^3.19.0",
"@tiptap/y-tiptap": "3.0.2",
"@traptitech/markdown-it-katex": "^3.6.0",
"@types/lodash-es": "^4.17.12",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"cropperjs": "1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"dayjs": "^1.11.13",
"diff": "^7.0.0",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.26.2",
"github-markdown-css": "^5.8.1",
"highlight.js": "^11.11.1",
"hotkeys-js": "^3.13.15",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.4",
"katex": "^0.16.28",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"lowlight": "^3.3.0",
"lucide-react": "^0.561.0",
"markdown-it": "^14.1.0",
"mermaid": "^11.12.2",
"mitt": "^3.0.1",
"next": "^15.1.0",
"next-intl": "^3.26.5",
"next-themes": "^0.4.3",
"openai": "^4.78.1",
"pdfjs-dist": "^4.10.38",
"pinyin": "^4.0.0",
"react": "19.1.0",
"react-advanced-cropper": "^0.20.1",
"react-day-picker": "^9.13.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.53.2",
"react-photo-view": "^1.2.6",
"react-resizable-panels": "^2.1.7",
"react-use": "^17.6.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-safe-area": "^0.6.0",
"tauri-plugin-clipboard-api": "^2.1.11",
"tippy.js": "^6.3.7",
"usehooks-ts": "^3.1.1",
"uuid": "^11.0.3",
"vaul": "^1.1.1",
"words-count": "^2.0.2",
"zod": "^3.23.8",
"zustand": "^5.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": ">=2.0.0",
"@types/crypto-js": "^4.2.2",
"@types/diff": "^6.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "15.0.3",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}