forked from AlexTorresDev/custom-electron-titlebar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1023 Bytes
/
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
{
"name": "custom-electron-titlebar",
"version": "3.2.2",
"description": "Custom Electron Titlebar is a library for electron that allows you to configure a fully customizable title bar.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "electron example/main.js",
"start": "npm run build && npm run dev"
},
"author": "Alex Torres <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/AlexTorresSk/custom-electron-titlebar.git"
},
"keywords": [
"typescript",
"electron",
"titlebar",
"menubar",
"windows",
"linux"
],
"bugs": {
"url": "https://github.com/AlexTorresSk/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/AlexTorresSk/custom-electron-titlebar#readme",
"directories": {
"example": "example",
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"electron": "^7.1.7",
"typescript": "^3.7.4"
}
}