-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.07 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.07 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "promptlab",
"version": "0.1.71",
"description": "A desktop laboratory for crafting code-based prompts for LLMs.",
"main": "./main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"webpack --mode development --watch\" \"electron . --inspect\"",
"build": "webpack --mode production",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"keywords": [
"electron",
"desktop",
"llm",
"chatgpt"
],
"author": "0xIbra <dev@0xibra.dev>",
"maintainer": "0xIbra <dev@0xibra.dev>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@electron/remote": "^2.1.2",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.0",
"css-loader": "^6.8.1",
"electron": "^25.3.0",
"electron-builder": "^24.6.4",
"postcss": "^8.4.27",
"postcss-loader": "^7.3.3",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@electron/remote": "^2.0.10",
"@heroicons/react": "^2.0.18",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.4",
"gpt-tokenizer": "^2.1.2",
"glob": "^10.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"build": {
"appId": "com.promptlab.app",
"productName": "PromptLab",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"main.js",
"index.html",
"package.json",
"assets/**/*"
],
"linux": {
"target": ["AppImage", "deb"],
"category": "Development",
"icon": "assets/icons",
"maintainer": "0xIbra <dev@0xibra.dev>",
"synopsis": "Code-to-LLM prompt laboratory",
"description": "A desktop laboratory for preparing and crafting code-based prompts for LLMs.",
"desktop": {
"Name": "PromptLab",
"Comment": "Code-to-LLM prompt laboratory",
"Categories": "Development;IDE;",
"Icon": "promptlab"
}
},
"win": {
"target": ["nsis", "portable"],
"icon": "assets/icons"
},
"mac": {
"target": {
"target": "dmg",
"arch": ["x64", "arm64"]
},
"icon": "assets/icons",
"category": "public.app-category.developer-tools",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"extendInfo": {
"NSMicrophoneUsageDescription": "Please give us access to your microphone",
"NSCameraUsageDescription": "Please give us access to your camera",
"NSDocumentsFolderUsageDescription": "Please give us access to your documents",
"NSDownloadsFolderUsageDescription": "Please give us access to your downloads"
}
},
"deb": {
"depends": ["gconf2", "gconf-service", "libnotify4", "libappindicator1", "libxtst6", "libnss3"]
},
"publish": {
"provider": "github",
"releaseType": "release"
}
}
}