-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.14 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-electronjs-titlebar",
"version": "0.0.3",
"description": "This is a library for electron.js to allow you to add custom titlebars!",
"types": "./index.d.ts",
"main": "./index.ts",
"typesVersions": {
"*": {
"main": [
"./main/index.d.ts"
]
}
},
"exports": {
".": "./index.js",
"./main": "./main/index.js"
},
"scripts": {
"clean": "rimraf dist",
"build:package": "tsc -b && tsc-alias",
"build:babel": "babel dist --out-dir dist --extensions \".js\"",
"start": "electron example/src/index.js",
"dev": "npm run build && npm run start",
"build": "npm run clean && npm run build:package && npm run build:babel",
"test": "jest"
},
"original-author": "AlexTorresDev <[email protected]>",
"author": "HazelNutHoney <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HazelNutHoney/custom-electron-titlebar.git"
},
"keywords": [
"typescript",
"electron",
"title bar",
"menubar",
"windows",
"linux",
"freebsd"
],
"bugs": {
"url": "https://github.com/HazelNutHoney/custom-electron-titlebar/issues"
},
"homepage": "https://github.com/HazelNutHoney/custom-electron-titlebar#readme",
"peerDependencies": {
"electron": ">20.0.0"
},
"devDependencies": {
"@babel/cli": "7.22.10",
"@babel/core": "7.22.10",
"@jest/globals": "29.6.2",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"babel-plugin-import-require-as-string": "1.0.2",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-rewire": "1.2.0",
"electron": "^25.9.3",
"eslint": "8.47.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-n": "16.0.1",
"eslint-plugin-promise": "6.1.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "29.6.2",
"rimraf": "5.0.1",
"standard": "17.1.0",
"ts-jest": "29.1.1",
"tsc-alias": "1.8.7",
"typescript": "5.1.6"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}