-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 914 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 914 Bytes
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
{
"name": "lowkey",
"version": "0.1.0",
"description": "Offline, local-first AI chat app thats hella fast.",
"author": {
"name": "askpext",
"email": "askpext@users.noreply.github.com"
},
"main": "dist/main/main.js",
"private": true,
"scripts": {
"build": "node build.js",
"watch": "tsc -w",
"electron": "electron .",
"start": "npm run build && electron .",
"dev": "npm run build && concurrently \"npm run watch\" \"npm run electron\"",
"dist:win": "npm run build && electron-builder --win --config.win.signAndEditExecutable=false",
"dist:linux": "npm run build && electron-builder --linux",
"dist:all": "npm run build && electron-builder --win --linux"
},
"devDependencies": {
"concurrently": "^9.2.1",
"electron": "^30.5.1",
"electron-builder": "^25.1.8",
"typescript": "^5.4.0"
},
"dependencies": {
"node-fetch": "^3.3.2"
}
}