-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.76 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
{
"name": "gamanote",
"version": "1.0.0",
"description": "Gamanote - High-performance desktop IDE & Note-taking app",
"main": "electron/main.js",
"scripts": {
"dev:react": "vite",
"dev:electron": "electron .",
"electron-dev": "npm run dev",
"dev": "concurrently -k \"npm run dev:react\" \"node scripts/wait-and-start-electron.js\"",
"build": "vite build",
"dist": "vite build && electron-builder"
},
"build": {
"appId": "com.yasser27.app",
"productName": "Gamanote",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"assets/**/*"
],
"win": {
"icon": "assets/icon.png",
"target": "nsis"
},
"mac": {
"icon": "assets/icon.png",
"target": "dmg"
}
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"adm-zip": "^0.5.16",
"chokidar": "^5.0.0",
"framer-motion": "^11.0.0",
"lucide-react": "^0.575.0",
"node-pty": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-resizable-panels": "^2.0.0",
"zustand": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.0",
"concurrently": "^8.2.0",
"electron": "^28.0.0",
"electron-builder": "^24.0.0",
"electron-rebuild": "^3.2.9",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"vite": "^5.1.0"
}
}