node-native-win-utils 1.3.1 → 1.3.2-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +350 -350
- package/binding.gyp +46 -46
- package/dist/index.d.ts +176 -173
- package/dist/index.js +155 -143
- package/dist/keyCodes.d.ts +2 -2
- package/dist/keyCodes.js +102 -102
- package/include/opencv2/opencv_modules.hpp +17 -17
- package/package.json +2 -2
- package/prebuilds/win32-x64/{node.napi.node → node-native-win-utils.node} +0 -0
- package/src/cpp/capturewindow.cpp +173 -173
- package/src/cpp/getWindowData.cpp +45 -45
- package/src/cpp/helpers.cpp +14 -14
- package/src/cpp/helpers.h +8 -8
- package/src/cpp/keyboard.cpp +241 -204
- package/src/cpp/main.cpp +30 -29
- package/src/cpp/mouse.cpp +175 -175
- package/src/cpp/opencv.cpp +425 -424
package/dist/index.js
CHANGED
|
@@ -1,143 +1,155 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.typeString = exports.mouseDrag = exports.mouseClick = exports.mouseMove = exports.captureWindowN = exports.
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const
|
|
12
|
-
const
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
exports.
|
|
16
|
-
exports.
|
|
17
|
-
exports.
|
|
18
|
-
exports.
|
|
19
|
-
exports.
|
|
20
|
-
exports.
|
|
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
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
*
|
|
90
|
-
* @param
|
|
91
|
-
* @param
|
|
92
|
-
* @
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
*
|
|
100
|
-
* @param
|
|
101
|
-
* @
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
*
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
*
|
|
116
|
-
* @param
|
|
117
|
-
* @param
|
|
118
|
-
* @param
|
|
119
|
-
* @
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
*
|
|
127
|
-
* @
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
*
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
}
|
|
143
|
-
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.typeString = exports.mouseDrag = exports.mouseClick = exports.mouseMove = exports.captureWindowN = exports.getWindowData = exports.keyUpHandler = exports.keyDownHandler = exports.OpenCV = exports.KeyListener = void 0;
|
|
7
|
+
exports.captureWindow = captureWindow;
|
|
8
|
+
exports.keyPress = keyPress;
|
|
9
|
+
const EventEmitter = require("events");
|
|
10
|
+
const path_1 = __importDefault(require("path"));
|
|
11
|
+
const fs_1 = __importDefault(require("fs"));
|
|
12
|
+
const bindings = require("node-gyp-build")(path_1.default.resolve(__dirname, ".."));
|
|
13
|
+
const keyCodes_1 = __importDefault(require("./keyCodes"));
|
|
14
|
+
const { keyDownHandler, keyUpHandler, getWindowData, captureWindowN, mouseMove, mouseClick, mouseDrag, typeString, pressKey, imread, imwrite, matchTemplate, blur, bgrToGray, drawRectangle, getRegion, } = bindings;
|
|
15
|
+
exports.keyDownHandler = keyDownHandler;
|
|
16
|
+
exports.keyUpHandler = keyUpHandler;
|
|
17
|
+
exports.getWindowData = getWindowData;
|
|
18
|
+
exports.captureWindowN = captureWindowN;
|
|
19
|
+
exports.mouseMove = mouseMove;
|
|
20
|
+
exports.mouseClick = mouseClick;
|
|
21
|
+
exports.mouseDrag = mouseDrag;
|
|
22
|
+
exports.typeString = typeString;
|
|
23
|
+
/**
|
|
24
|
+
* Captures a window and saves it to a file.
|
|
25
|
+
* @param windowName - The name of the window to capture.
|
|
26
|
+
* @param path - The file path to save the captured image.
|
|
27
|
+
* @returns True if the capture and save operation is successful, otherwise false.
|
|
28
|
+
*/
|
|
29
|
+
function captureWindow(windowName, path) {
|
|
30
|
+
const buffer = captureWindowN(windowName);
|
|
31
|
+
if (!buffer)
|
|
32
|
+
return false;
|
|
33
|
+
fs_1.default.writeFileSync(path, buffer);
|
|
34
|
+
return true;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* Represents a class to listen to keyboard events.
|
|
38
|
+
* @extends EventEmitter
|
|
39
|
+
*/
|
|
40
|
+
class KeyListener extends EventEmitter {
|
|
41
|
+
constructor() {
|
|
42
|
+
super();
|
|
43
|
+
keyDownHandler((keyCode) => {
|
|
44
|
+
const keyName = keyCodes_1.default.get(keyCode.toString());
|
|
45
|
+
this.emit("keyDown", {
|
|
46
|
+
keyCode,
|
|
47
|
+
keyName,
|
|
48
|
+
});
|
|
49
|
+
});
|
|
50
|
+
keyUpHandler((keyCode) => {
|
|
51
|
+
const keyName = keyCodes_1.default.get(keyCode.toString());
|
|
52
|
+
this.emit("keyUp", {
|
|
53
|
+
keyCode,
|
|
54
|
+
keyName,
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
exports.KeyListener = KeyListener;
|
|
60
|
+
/**
|
|
61
|
+
* Represents the OpenCV class that provides image processing functionality.
|
|
62
|
+
*/
|
|
63
|
+
class OpenCV {
|
|
64
|
+
imageData;
|
|
65
|
+
/**
|
|
66
|
+
* Represents the OpenCV class that provides image processing functionality.
|
|
67
|
+
*/
|
|
68
|
+
constructor(image) {
|
|
69
|
+
if (typeof image === "string") {
|
|
70
|
+
this.imageData = imread(image);
|
|
71
|
+
}
|
|
72
|
+
else {
|
|
73
|
+
this.imageData = image;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* The width of the image.
|
|
78
|
+
*/
|
|
79
|
+
get width() {
|
|
80
|
+
return this.imageData.width;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* The height of the image.
|
|
84
|
+
*/
|
|
85
|
+
get height() {
|
|
86
|
+
return this.imageData.height;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Matches a template image within the current image.
|
|
90
|
+
* @param template - The template image data to search for.
|
|
91
|
+
* @param method - The template matching method (optional).
|
|
92
|
+
* @param mask - The optional mask image data to apply the operation (optional).
|
|
93
|
+
* @returns The result of the template matching operation.
|
|
94
|
+
*/
|
|
95
|
+
matchTemplate(template, method, mask) {
|
|
96
|
+
return matchTemplate(this.imageData, template, method, mask);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Applies a blur filter to the image.
|
|
100
|
+
* @param sizeX - The horizontal size of the blur filter.
|
|
101
|
+
* @param sizeY - The vertical size of the blur filter.
|
|
102
|
+
* @returns A new OpenCV instance with the blurred image data.
|
|
103
|
+
*/
|
|
104
|
+
blur(sizeX, sizeY) {
|
|
105
|
+
return new OpenCV(blur(this.imageData, sizeX, sizeY));
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Converts the image from BGR to grayscale.
|
|
109
|
+
* @returns A new OpenCV instance with the grayscale image data.
|
|
110
|
+
*/
|
|
111
|
+
bgrToGray() {
|
|
112
|
+
return new OpenCV(bgrToGray(this.imageData));
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* Draws a rectangle on the image.
|
|
116
|
+
* @param start - The starting point of the rectangle.
|
|
117
|
+
* @param end - The ending point of the rectangle.
|
|
118
|
+
* @param rgb - The color (RGB) of the rectangle.
|
|
119
|
+
* @param thickness - The thickness of the rectangle's border.
|
|
120
|
+
* @returns A new OpenCV instance with the image containing the drawn rectangle.
|
|
121
|
+
*/
|
|
122
|
+
drawRectangle(start, end, rgb, thickness) {
|
|
123
|
+
return new OpenCV(drawRectangle(this.imageData, start, end, rgb, thickness));
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Extracts a region of interest (ROI) from the image.
|
|
127
|
+
* @param region - The region of interest defined as [x, y, width, height].
|
|
128
|
+
* @returns A new OpenCV instance with the extracted region of interest.
|
|
129
|
+
*/
|
|
130
|
+
getRegion(region) {
|
|
131
|
+
return new OpenCV(getRegion(this.imageData, region));
|
|
132
|
+
}
|
|
133
|
+
/**
|
|
134
|
+
* Writes the image data to a file.
|
|
135
|
+
* @param path - The file path to save the image.
|
|
136
|
+
*/
|
|
137
|
+
imwrite(path) {
|
|
138
|
+
const buffer = imwrite(this.imageData);
|
|
139
|
+
if (!buffer)
|
|
140
|
+
return;
|
|
141
|
+
fs_1.default.writeFileSync(path, buffer);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
exports.OpenCV = OpenCV;
|
|
145
|
+
function keyPress(keyCode, repeat) {
|
|
146
|
+
return new Promise((resolve, reject) => {
|
|
147
|
+
if (!repeat) {
|
|
148
|
+
return resolve(keyPress(keyCode));
|
|
149
|
+
}
|
|
150
|
+
for (let i = 0; i < repeat; i++) {
|
|
151
|
+
keyPress(keyCode);
|
|
152
|
+
}
|
|
153
|
+
return resolve(true);
|
|
154
|
+
});
|
|
155
|
+
}
|
package/dist/keyCodes.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: Map<string, string>;
|
|
2
|
-
export default _default;
|
|
1
|
+
declare const _default: Map<string, string>;
|
|
2
|
+
export default _default;
|
package/dist/keyCodes.js
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = new Map(Object.entries({
|
|
4
|
-
8: "Backspace",
|
|
5
|
-
9: "Tab",
|
|
6
|
-
13: "Enter",
|
|
7
|
-
16: "Shift",
|
|
8
|
-
17: "Ctrl",
|
|
9
|
-
18: "Alt",
|
|
10
|
-
20: "CapsLock",
|
|
11
|
-
27: "Escape",
|
|
12
|
-
32: "Space",
|
|
13
|
-
33: "PageUp",
|
|
14
|
-
34: "PageDown",
|
|
15
|
-
35: "End",
|
|
16
|
-
36: "Home",
|
|
17
|
-
37: "ArrowLeft",
|
|
18
|
-
38: "ArrowUp",
|
|
19
|
-
39: "ArrowRight",
|
|
20
|
-
40: "ArrowDown",
|
|
21
|
-
45: "Insert",
|
|
22
|
-
46: "Delete",
|
|
23
|
-
48: "0",
|
|
24
|
-
49: "1",
|
|
25
|
-
50: "2",
|
|
26
|
-
51: "3",
|
|
27
|
-
52: "4",
|
|
28
|
-
53: "5",
|
|
29
|
-
54: "6",
|
|
30
|
-
55: "7",
|
|
31
|
-
56: "8",
|
|
32
|
-
57: "9",
|
|
33
|
-
65: "A",
|
|
34
|
-
66: "B",
|
|
35
|
-
67: "C",
|
|
36
|
-
68: "D",
|
|
37
|
-
69: "E",
|
|
38
|
-
70: "F",
|
|
39
|
-
71: "G",
|
|
40
|
-
72: "H",
|
|
41
|
-
73: "I",
|
|
42
|
-
74: "J",
|
|
43
|
-
75: "K",
|
|
44
|
-
76: "L",
|
|
45
|
-
77: "M",
|
|
46
|
-
78: "N",
|
|
47
|
-
79: "O",
|
|
48
|
-
80: "P",
|
|
49
|
-
81: "Q",
|
|
50
|
-
82: "R",
|
|
51
|
-
83: "S",
|
|
52
|
-
84: "T",
|
|
53
|
-
85: "U",
|
|
54
|
-
86: "V",
|
|
55
|
-
87: "W",
|
|
56
|
-
88: "X",
|
|
57
|
-
89: "Y",
|
|
58
|
-
90: "Z",
|
|
59
|
-
91: "MetaLeft",
|
|
60
|
-
92: "MetaRight",
|
|
61
|
-
93: "ContextMenu",
|
|
62
|
-
96: "Numpad0",
|
|
63
|
-
97: "Numpad1",
|
|
64
|
-
98: "Numpad2",
|
|
65
|
-
99: "Numpad3",
|
|
66
|
-
100: "Numpad4",
|
|
67
|
-
101: "Numpad5",
|
|
68
|
-
102: "Numpad6",
|
|
69
|
-
103: "Numpad7",
|
|
70
|
-
104: "Numpad8",
|
|
71
|
-
105: "Numpad9",
|
|
72
|
-
106: "NumpadMultiply",
|
|
73
|
-
107: "NumpadAdd",
|
|
74
|
-
109: "NumpadSubtract",
|
|
75
|
-
110: "NumpadDecimal",
|
|
76
|
-
111: "NumpadDivide",
|
|
77
|
-
112: "F1",
|
|
78
|
-
113: "F2",
|
|
79
|
-
114: "F3",
|
|
80
|
-
115: "F4",
|
|
81
|
-
116: "F5",
|
|
82
|
-
117: "F6",
|
|
83
|
-
118: "F7",
|
|
84
|
-
119: "F8",
|
|
85
|
-
120: "F9",
|
|
86
|
-
121: "F10",
|
|
87
|
-
122: "F11",
|
|
88
|
-
123: "F12",
|
|
89
|
-
144: "NumLock",
|
|
90
|
-
145: "ScrollLock",
|
|
91
|
-
186: "Semicolon",
|
|
92
|
-
187: "Equal",
|
|
93
|
-
188: "Comma",
|
|
94
|
-
189: "Minus",
|
|
95
|
-
190: "Period",
|
|
96
|
-
191: "Slash",
|
|
97
|
-
192: "Backquote",
|
|
98
|
-
219: "BracketLeft",
|
|
99
|
-
220: "Backslash",
|
|
100
|
-
221: "BracketRight",
|
|
101
|
-
222: "Quote",
|
|
102
|
-
}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = new Map(Object.entries({
|
|
4
|
+
8: "Backspace",
|
|
5
|
+
9: "Tab",
|
|
6
|
+
13: "Enter",
|
|
7
|
+
16: "Shift",
|
|
8
|
+
17: "Ctrl",
|
|
9
|
+
18: "Alt",
|
|
10
|
+
20: "CapsLock",
|
|
11
|
+
27: "Escape",
|
|
12
|
+
32: "Space",
|
|
13
|
+
33: "PageUp",
|
|
14
|
+
34: "PageDown",
|
|
15
|
+
35: "End",
|
|
16
|
+
36: "Home",
|
|
17
|
+
37: "ArrowLeft",
|
|
18
|
+
38: "ArrowUp",
|
|
19
|
+
39: "ArrowRight",
|
|
20
|
+
40: "ArrowDown",
|
|
21
|
+
45: "Insert",
|
|
22
|
+
46: "Delete",
|
|
23
|
+
48: "0",
|
|
24
|
+
49: "1",
|
|
25
|
+
50: "2",
|
|
26
|
+
51: "3",
|
|
27
|
+
52: "4",
|
|
28
|
+
53: "5",
|
|
29
|
+
54: "6",
|
|
30
|
+
55: "7",
|
|
31
|
+
56: "8",
|
|
32
|
+
57: "9",
|
|
33
|
+
65: "A",
|
|
34
|
+
66: "B",
|
|
35
|
+
67: "C",
|
|
36
|
+
68: "D",
|
|
37
|
+
69: "E",
|
|
38
|
+
70: "F",
|
|
39
|
+
71: "G",
|
|
40
|
+
72: "H",
|
|
41
|
+
73: "I",
|
|
42
|
+
74: "J",
|
|
43
|
+
75: "K",
|
|
44
|
+
76: "L",
|
|
45
|
+
77: "M",
|
|
46
|
+
78: "N",
|
|
47
|
+
79: "O",
|
|
48
|
+
80: "P",
|
|
49
|
+
81: "Q",
|
|
50
|
+
82: "R",
|
|
51
|
+
83: "S",
|
|
52
|
+
84: "T",
|
|
53
|
+
85: "U",
|
|
54
|
+
86: "V",
|
|
55
|
+
87: "W",
|
|
56
|
+
88: "X",
|
|
57
|
+
89: "Y",
|
|
58
|
+
90: "Z",
|
|
59
|
+
91: "MetaLeft",
|
|
60
|
+
92: "MetaRight",
|
|
61
|
+
93: "ContextMenu",
|
|
62
|
+
96: "Numpad0",
|
|
63
|
+
97: "Numpad1",
|
|
64
|
+
98: "Numpad2",
|
|
65
|
+
99: "Numpad3",
|
|
66
|
+
100: "Numpad4",
|
|
67
|
+
101: "Numpad5",
|
|
68
|
+
102: "Numpad6",
|
|
69
|
+
103: "Numpad7",
|
|
70
|
+
104: "Numpad8",
|
|
71
|
+
105: "Numpad9",
|
|
72
|
+
106: "NumpadMultiply",
|
|
73
|
+
107: "NumpadAdd",
|
|
74
|
+
109: "NumpadSubtract",
|
|
75
|
+
110: "NumpadDecimal",
|
|
76
|
+
111: "NumpadDivide",
|
|
77
|
+
112: "F1",
|
|
78
|
+
113: "F2",
|
|
79
|
+
114: "F3",
|
|
80
|
+
115: "F4",
|
|
81
|
+
116: "F5",
|
|
82
|
+
117: "F6",
|
|
83
|
+
118: "F7",
|
|
84
|
+
119: "F8",
|
|
85
|
+
120: "F9",
|
|
86
|
+
121: "F10",
|
|
87
|
+
122: "F11",
|
|
88
|
+
123: "F12",
|
|
89
|
+
144: "NumLock",
|
|
90
|
+
145: "ScrollLock",
|
|
91
|
+
186: "Semicolon",
|
|
92
|
+
187: "Equal",
|
|
93
|
+
188: "Comma",
|
|
94
|
+
189: "Minus",
|
|
95
|
+
190: "Period",
|
|
96
|
+
191: "Slash",
|
|
97
|
+
192: "Backquote",
|
|
98
|
+
219: "BracketLeft",
|
|
99
|
+
220: "Backslash",
|
|
100
|
+
221: "BracketRight",
|
|
101
|
+
222: "Quote",
|
|
102
|
+
}));
|
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* ** File generated automatically, do not modify **
|
|
3
|
-
*
|
|
4
|
-
* This file defines the list of modules available in current build configuration
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
// This definition means that OpenCV is built with enabled non-free code.
|
|
10
|
-
// For example, patented algorithms for non-profit/non-commercial use only.
|
|
11
|
-
/* #undef OPENCV_ENABLE_NONFREE */
|
|
12
|
-
|
|
13
|
-
#define HAVE_OPENCV_CORE
|
|
14
|
-
#define HAVE_OPENCV_IMGCODECS
|
|
15
|
-
#define HAVE_OPENCV_IMGPROC
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
/*
|
|
2
|
+
* ** File generated automatically, do not modify **
|
|
3
|
+
*
|
|
4
|
+
* This file defines the list of modules available in current build configuration
|
|
5
|
+
*
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
// This definition means that OpenCV is built with enabled non-free code.
|
|
10
|
+
// For example, patented algorithms for non-profit/non-commercial use only.
|
|
11
|
+
/* #undef OPENCV_ENABLE_NONFREE */
|
|
12
|
+
|
|
13
|
+
#define HAVE_OPENCV_CORE
|
|
14
|
+
#define HAVE_OPENCV_IMGCODECS
|
|
15
|
+
#define HAVE_OPENCV_IMGPROC
|
|
16
|
+
|
|
17
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "node-native-win-utils",
|
|
3
|
-
"version": "1.3.1",
|
|
3
|
+
"version": "1.3.2-alpha.1",
|
|
4
4
|
"author": "RynerNO",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": "https://github.com/RynerNO/node-native-win-utils.git",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"node-addon-api": "^6.1.0",
|
|
39
39
|
"node-gyp": "^9.3.1",
|
|
40
|
-
"node-gyp-build": "
|
|
40
|
+
"node-gyp-build": "4.8.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/node": "^20.2.5"
|
|
Binary file
|