-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.28 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
78
79
80
81
82
83
84
85
{
"name": "electron-windows-titlebar",
"version": "1.0.7",
"description": "windows-style title bar component for Electron",
"main": "index.js",
"scripts": {
"dev": "concurrently npm:dev:*",
"dev:main": "cross-env NODE_ENV=development electron -r ts-node/register/transpile-only ./example/main.ts",
"dev:web": "cross-env NODE_ENV=development webpack-dev-server",
"build:web": "tsc && copyup 'src/**/*.less' lib/",
"build:debug": "node-gyp configure && node-gyp build --debug",
"build:release": "node-gyp configure && node-gyp build",
"build": "node-gyp rebuild",
"prepublishOnly": "npm run build",
"clean": "node-gyp clean",
"test": "jest",
"lint": "eslint --fix --quiet --ext .js,.jsx,.ts,.tsx src example",
"contributor": "git-contributor"
},
"keywords": [
"electron",
"windows",
"title-bar"
],
"files": [
"build/Release/*.node",
"src/**/*.cpp",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.less",
"lib/**/*.ts",
"lib/**/*.js",
"lib/**/*.less"
],
"repository": {
"type": "git",
"url": "https://github.com/electron-modules/electron-windows-titlebar"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^3.0.0"
},
"devDependencies": {
"@applint/spec": "^1.2.0",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.181",
"@types/react": "^17.0.44",
"@types/react-dom": "^17.0.16",
"@typescript-eslint/parser": "^5.19.0",
"classnames": "^2.2.6",
"concurrently": "^5.3.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"css-loader": "^0.28.8",
"detect-port": "1",
"electron": "18",
"electron-windows": "18",
"eslint": "7",
"git-contributor": "*",
"husky": "^7.0.4",
"jest": "^26.6.3",
"json-loader": "^0.5.7",
"less": "3.11.3",
"less-loader": "^6.2.0",
"node-gyp": "^9.3.0",
"prettier": "^2.6.2",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"style-loader": "^1.1.2",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"license": "MIT"
}