forked from AlexTorresDev/custom-electron-titlebar
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.97 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
63
64
{
"name": "@treverix/custom-electron-titlebar",
"version": "4.2.0",
"description": "Custom Electron Titlebar is a library for electron 10+ that allows you to configure a fully customizable title bar.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build:test": "tsc && babel ./dist --out-dir ./dist --extensions \".js\" & ncp ./src ./dist --filter=\"^.*\\.js$\"",
"build": "tsc && babel ./dist --out-dir ./dist --extensions \".js\"",
"dev-example": "electron dev-example/main.js",
"example": "electron example/main.js",
"start": "npm run build && npm run dev-example",
"test": "jest"
},
"author": "Andreas Dolk <[email protected]>",
"contributors": [
"Alex Torres <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Treverix/custom-electron-titlebar.git"
},
"keywords": [
"typescript",
"electron",
"titlebar",
"menubar",
"windows",
"linux"
],
"bugs": {
"url": "https://github.com/Treverix/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/Treverix/custom-electron-titlebar#readme",
"directories": {
"example": "example",
"lib": "lib"
},
"dependencies": {
"@electron/remote": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/preset-env": "^7.15.6",
"@babel/preset-typescript": "^7.15.0",
"@types/jest": "^27.0.2",
"@types/rewire": "^2.5.28",
"babel-plugin-const-enum": "^1.1.0",
"babel-plugin-import-require-as-string": "^1.0.2",
"babel-plugin-module-resolver": "^4.1.0",
"electron": "^14.0.2",
"typescript": "^4.4.3",
"babel-plugin-rewire": "^1.2.0",
"jest": "^27.2.4",
"ncp": "^2.0.0",
"rewire": "^5.0.0",
"ts-jest": "^27.0.5"
}
}