forked from KochiyaOcean/electron-react-titlebar
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "@meetfranz/electron-react-titlebar",
"version": "1.2.0",
"description": "A github desktop style title bar component for electron.",
"main": "index.js",
"exports": {
".": "./index.js",
"./main": "./dist/main.js",
"./renderer": "./dist/renderer.js",
"./assets/style.css": "./assets/style.css",
"./style": "./assets/style.css"
},
"scripts": {
"build": "tsc && webpack --mode=production",
"demo": "electron app",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"check": "eslint . --quiet --fix"
},
"author": "KochiyaOcean",
"license": "MIT",
"keywords": [
"electron",
"react",
"titlebar",
"title"
],
"homepage": "https://github.com/meetfranz/electron-react-titlebar",
"repository": {
"url": "https://github.com/meetfranz/electron-react-titlebar"
},
"bugs": {
"url": "https://github.com/meetfranz/electron-react-titlebar/issues"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/electron": "^1.6.10",
"@types/lodash": "^4.14.175",
"@types/react": "^17.0.26",
"@types/react-virtualized": "^9.21.13",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"babel-loader": "^8.2.2",
"electron": "^15.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-react": "^7.26.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"typescript": "^4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"classnames": "^2.3.1",
"lodash": "^4.17.21",
"react-virtualized": "^9.22.3"
}
}