-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.65 KB
/
package.json
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
{
"name": "chatgpt-desktop",
"description": "A simple Electron application for ChatGPT",
"version": "0.1.0",
"author": "Binghuan Zhang <esteponawondering@gmail.com>",
"repository": "https://github.com/estepona/chatgpt-desktop",
"keywords": [
"chatgpt",
"desktop",
"electron",
"typescript"
],
"main": "./tsout/main.js",
"build": {
"appId": "com.electron.chatgpt-desktop",
"productName": "chatgpt-desktop",
"copyright": "Copyright © 2023 - ${author}",
"directories": {
"buildResources": "build",
"output": "release",
"app": "."
},
"mac": {
"category": "public.app-category.education",
"target": "dmg"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"icon": "build/icon.png"
}
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "npx eslint src/",
"start": "npm run build && electron ./tsout/main.js",
"pack-win": "npm run build && npx electron-builder -w --x64",
"pack-mac": "npm run build && npx electron-builder -m --x64",
"pack-mas": "npm run build && npx electron-builder -m --arm64",
"pack-linux": "npm run build && npx electron-builder -l --x64"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"ansi-regex": ">=5.0.1",
"electron": "^22.0.3",
"electron-builder": "^23.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"ini": "^3.0.0",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
},
"dependencies": {
"dotenv": "^16.0.1"
}
}