-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.17 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.17 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
{
"name": "cyber-notes",
"private": true,
"version": "1.5.1",
"author": "CyberGems",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:electron": "tsc && vite build && electron-builder",
"preview": "vite preview",
"lint": "tsc --noEmit"
},
"build": {
"appId": "com.cybernotes.app",
"productName": "CyberNotes",
"directories": {
"output": "release"
},
"files": [
"dist",
"dist-electron"
],
"win": {
"icon": "public/icon.ico",
"target": [
"nsis",
"portable"
]
},
"nsis": {
"artifactName": "${productName}_Setup_${version}.${ext}",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": "always",
"runAfterFinish": true,
"perMachine": true,
"installerLanguages": [
"es",
"en"
],
"multiLanguageInstaller": true,
"shortcutName": "CyberNotes"
},
"portable": {
"artifactName": "${productName}_Portable_${version}.${ext}"
},
"extraResources": [
{
"from": "node_modules/sql.js/dist/sql-wasm.wasm",
"to": "sql-wasm.wasm"
}
]
},
"dependencies": {
"@tiptap/extension-highlight": "^2.11.5",
"@tiptap/extension-image": "^2.27.2",
"@tiptap/extension-link": "^2.27.2",
"@tiptap/extension-placeholder": "^2.11.5",
"@tiptap/extension-underline": "^2.11.5",
"@tiptap/pm": "^2.11.5",
"@tiptap/react": "^2.11.5",
"@tiptap/starter-kit": "^2.11.5",
"bcryptjs": "^3.0.2",
"lucide-react": "^0.511.0",
"motion": "^12.12.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"sql.js": "^1.14.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.2",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.4.1",
"electron": "^35.2.1",
"electron-builder": "^26.0.12",
"tsx": "^4.19.4",
"typescript": "~5.8.3",
"vite": "^6.3.5",
"vite-plugin-electron": "^0.29.1",
"vite-plugin-electron-renderer": "^0.14.7"
}
}