-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
53 lines (53 loc) · 1.08 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
{
"name": "electron-overlay-window",
"version": "3.3.0",
"author": {
"name": "Alexander Drozdov"
},
"repository": {
"type": "git",
"url": "https://github.com/SnosMe/electron-overlay-window.git"
},
"license": "MIT",
"keywords": [
"window",
"overlay",
"electron",
"event",
"watch",
"foreground"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"install": "node-gyp-build",
"prebuild": "prebuildify --napi",
"demo:electron": "node-gyp rebuild && yarn tsc && electron dist/demo/electron-demo.js"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map",
"binding.gyp",
"src/lib",
"prebuilds"
],
"devDependencies": {
"@types/node": "18.x.x",
"@types/throttle-debounce": "5.x.x",
"electron": "24.x.x",
"prebuildify": "5.x.x",
"typescript": "5.x.x"
},
"dependencies": {
"node-gyp-build": "4.x.x",
"throttle-debounce": "5.x.x"
},
"gypfile": true,
"engines": {
"node": ">= 16"
},
"peerDependencies": {
"electron": ">= 18"
}
}