-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.61 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
{
"name": "librenote",
"version": "3.5.0",
"description": "A OneNote-like note-taking app with Google Drive sync and Gemini AI",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build && electron-builder",
"build:win": "vite build && electron-builder --win",
"build:mac": "vite build && electron-builder --mac",
"preview": "vite preview"
},
"dependencies": {
"@google/genai": "^1.42.0",
"@tiptap/extension-code-block-lowlight": "^2.6.0",
"@tiptap/extension-color": "^2.6.0",
"@tiptap/extension-highlight": "^2.6.0",
"@tiptap/extension-image": "^2.6.0",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-placeholder": "^2.6.0",
"@tiptap/extension-table": "^2.27.2",
"@tiptap/extension-table-cell": "^2.27.2",
"@tiptap/extension-table-header": "^2.27.2",
"@tiptap/extension-table-row": "^2.27.2",
"@tiptap/extension-task-item": "^2.6.0",
"@tiptap/extension-task-list": "^2.6.0",
"@tiptap/extension-text-align": "^2.6.0",
"@tiptap/extension-text-style": "^2.6.0",
"@tiptap/extension-underline": "^2.6.0",
"@tiptap/pm": "^2.6.0",
"@tiptap/react": "^2.6.0",
"@tiptap/starter-kit": "^2.6.0",
"lucide-react": "^0.575.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.0",
"concurrently": "^8.2.2",
"electron": "^28.2.0",
"electron-builder": "^24.13.0",
"vite": "^5.4.0",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.librenote.app",
"productName": "LibreNote",
"forceCodeSigning": false,
"directories": {
"output": "release"
},
"mac": {
"icon": "build/icon.icns",
"identity": null,
"hardenedRuntime": false,
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.productivity"
},
"win": {
"icon": "build/icon.ico",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "LibreNote",
"installerIcon": "build/icon.ico",
"uninstallerIcon": "build/icon.ico",
"installerHeaderIcon": "build/icon.ico"
},
"files": [
"dist/**/*",
"electron/**/*"
]
}
}