-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.48 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.48 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
{
"name": "bytepad",
"private": true,
"version": "0.24.3",
"description": "A modern productivity app for notes, tasks, habits, and journaling",
"author": {
"name": "Sami Tugal",
"email": "[email protected]"
},
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "vite",
"dev:electron": "electron-vite dev",
"build": "tsc -b && vite build",
"build:electron": "electron-vite build",
"preview": "vite preview",
"preview:electron": "electron-vite preview",
"package": "electron-vite build && electron-builder",
"package:win": "electron-vite build && electron-builder --win",
"package:mac": "electron-vite build && electron-builder --mac",
"package:linux": "electron-vite build && electron-builder --linux",
"package:all": "electron-vite build && electron-builder --win --mac",
"release": "electron-vite build && electron-builder --win --mac --publish never",
"lint": "eslint ."
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.9",
"@ai-sdk/openai": "^3.0.7",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@emailjs/browser": "^4.4.1",
"@langchain/anthropic": "^1.3.7",
"@langchain/core": "^1.1.12",
"@langchain/openai": "^1.2.1",
"@modelcontextprotocol/sdk": "^1.25.3",
"@tailwindcss/typography": "^0.5.19",
"@types/react-syntax-highlighter": "^15.5.13",
"ai": "^6.0.27",
"cors": "^2.8.6",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"firebase": "^12.7.0",
"helmet": "^8.1.0",
"jszip": "^3.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"ws": "^8.19.0",
"zod": "^4.3.5",
"zustand": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/file-saver": "^2.0.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"electron": "^39.2.7",
"electron-builder": "^26.4.0",
"electron-store": "^11.0.2",
"electron-vite": "^5.0.0",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5"
}
}