-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 870 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 870 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
31
32
33
34
35
36
{
"name": "stackbox",
"productName": "StackBox",
"version": "1.1.1",
"description": "Local Apache and MySQL controller with quick access to tools like localhost and phpMyAdmin, specifically designed for macOS.",
"repository": {
"type": "git",
"url": "https://github.com/danybranding/stackbox"
},
"author": "Danny BS",
"license": "MIT",
"main": "js/main.js",
"style": "css/style.scss",
"scripts": {
"start": "electron .",
"build": "electron-builder --mac"
},
"build": {
"appId": "com.stackbox",
"productName": "StackBox",
"mac": {
"target": "dir",
"category": "public.app-category.developer-tools",
"icon": "img/icon.icns"
}
},
"devDependencies": {
"electron": "^37.2.0",
"electron-builder": "^26.0.12",
"electron-reload": "^2.0.0-alpha.1"
},
"dependencies": {
"i18next": "^25.3.1",
"i18next-fs-backend": "^2.6.0"
}
}