forked from AlexTorresDev/custom-electron-titlebar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
65
66
67
68
69
{
"name": "custom-electron-titlebar",
"version": "4.2.2",
"description": "Library for electron that allows you to configure a fully customizable title bar.",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"main": [
"./dist/main/index.d.ts"
]
}
},
"exports": {
".": "./dist/index.js",
"./main": "./dist/main/index.js"
},
"scripts": {
"clean": "rimraf ./dist",
"build:package": "tsc && tsc-alias",
"build:babel": "babel ./dist --out-dir ./dist --extensions \".js\"",
"start": "electron example/main.js",
"dev": "npm run build && npm run start",
"build": "npm run clean && npm run build:package && npm run build:babel"
},
"author": "AlexTorresDev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AlexTorresDev/custom-electron-titlebar.git"
},
"keywords": [
"typescript",
"electron",
"title bar",
"menubar",
"windows",
"linux"
],
"bugs": {
"url": "https://github.com/AlexTorresDev/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/AlexTorresDev/custom-electron-titlebar#readme",
"directories": {
"example": "example",
"dist": "dist"
},
"peerDependencies": {
"electron": ">20.0.0"
},
"devDependencies": {
"@babel/cli": "7.21.5",
"@babel/core": "7.21.8",
"@typescript-eslint/eslint-plugin": "5.59.2",
"@typescript-eslint/parser": "5.59.2",
"babel-plugin-import-require-as-string": "1.0.2",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-rewire": "1.2.0",
"electron": "24.2.0",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"rimraf": "5.0.0",
"tsc-alias": "1.8.6",
"typescript": "5.0.4"
}
}