This repository has been archived by the owner on Sep 13, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 149
/
package.json
77 lines (77 loc) · 2.21 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
70
71
72
73
74
75
76
77
{
"name": "custom-electron-titlebar",
"version": "4.2.8",
"description": "Library for electron that allows you to configure a fully customizable title bar.",
"types": "./dist/index.d.ts",
"main": "./dist/index.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",
"postversion": "cp package.json .. && chmod u+x ../revert.sh && ../revert.sh",
"test": "jest"
},
"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",
"freebsd"
],
"bugs": {
"url": "https://github.com/AlexTorresDev/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/AlexTorresDev/custom-electron-titlebar#readme",
"peerDependencies": {
"electron": ">20.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"babel-plugin-import-require-as-string": "^1.0.2",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-rewire": "^1.2.0",
"electron": "^28.1.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.5",
"standard": "^17.1.0",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}