forked from SnosMe/electron-overlay-window
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.95 KB
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
{
"name": "electron-overlay-window",
"version": "3.4.0",
"description": "Native library to create overlay windows for Electron with UI automation support",
"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",
"automation",
"ui-automation",
"button",
"click",
"input",
"controls"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"install": "node-gyp rebuild && npm run build:types && npm run build:cjs && npm run build:esm",
"prebuild": "prebuildify --napi",
"build": "node-gyp rebuild && npm run build:types && npm run build:cjs && npm run build:esm",
"build:types": "tsc --emitDeclarationOnly",
"build:cjs": "tsc",
"build:esm": "tsc -p tsconfig.esm.json && npm run rename-esm",
"rename-esm": "node -e \"const fs = require('fs'); if (fs.existsSync('dist-esm/index.js')) { fs.renameSync('dist-esm/index.js', 'dist/index.mjs'); }\"",
"prepublishOnly": "npm run build",
"demo:electron": "node-gyp rebuild && npm run build && electron dist/demo/electron-demo.js"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.mjs",
"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",
"typescript": "5.x.x"
},
"gypfile": true,
"engines": {
"node": ">= 16"
},
"peerDependencies": {
"electron": ">= 18"
}
}