forked from panjiang/custom-electron-titlebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "pj-custom-electron-titlebar",
"version": "3.1.5",
"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": {
"start": "tsc && tsc ./example/main && tsc ./example/renderer && electron ./example/main.js",
"build": "tsc"
},
"author": "Alex Torres <alextorressk@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/panjiang/custom-electron-titlebar.git"
},
"keywords": [
"typescript",
"electron",
"titlebar",
"menubar",
"windows",
"linux"
],
"bugs": {
"url": "https://github.com/panjiang/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/panjiang/custom-electron-titlebar#readme",
"directories": {
"example": "example",
"lib": "lib"
},
"dependencies": {},
"devDependencies": {
"electron": "^6.0.11",
"typescript": "^3.5.3"
}
}