-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"name": "electronbar",
"version": "2.3.5",
"description": "A react title bar component and handler for Electron.",
"homepage": "https://github.com/obsius/electronbar",
"author": "Jeff Seaman <[email protected]> (https://www.ngc6822.com)",
"license": "MIT",
"main": "lib/index.js",
"scripts": {
"prepare": "rollup --bundleConfigAsCjs -c && copyfiles -u 1 css/* lib"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-react-jsx": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"copyfiles": "^2.4.1",
"rollup": "^4.24.3"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"babel": {
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/transform-react-jsx"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"chrome": "100"
}
}
]
]
},
"keywords": [
"electron",
"titlebar",
"menubar",
"title",
"menu",
"frameless",
"custom"
]
}