-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.32 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
{
"name": "rempo",
"productName": "rempo",
"version": "0.0.5",
"description": "Remember what you were building",
"main": ".vite/build/main.js",
"private": true,
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "echo \"No linting configured\""
},
"keywords": [],
"author": {
"name": "ndizeyedavid",
"email": "davidndizeye101@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-deb": "^7.11.1",
"@electron-forge/maker-rpm": "^7.11.1",
"@electron-addons/electron-forge-maker-nsis": "^7.0.2",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@vitejs/plugin-react": "^5.1.3",
"daisyui": "^5.5.18",
"electron": "40.2.1",
"vite": "^5.4.21"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"electron-squirrel-startup": "^1.0.1",
"groq-sdk": "^0.37.0",
"ignore": "^7.0.5",
"lucide-react": "^0.563.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hot-toast": "^2.6.0",
"simple-git": "^3.30.0",
"tailwindcss": "^4.1.18",
"xterm": "^5.3.0",
"xterm-addon-fit": "^0.8.0"
},
"build": {
"appId": "com.ndizeyedavid.rempo",
"productName": "REMPO",
"artifactName": "${productName}-${version}-Setup.${ext}",
"directories": {
"output": "out/make/nsis/make"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"icon": "src/assets/favicon.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "REMPO",
"installerIcon": "src/assets/favicon.ico",
"uninstallerIcon": "src/assets/favicon.ico",
"uninstallDisplayName": "REMPO",
"license": "LICENSE.txt",
"include": "installer/nsis/installer.nsh",
"runAfterFinish": true,
"deleteAppDataOnUninstall": true
}
}
}