-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "node-mac-recorder",
"version": "2.22.11",
"description": "Native macOS screen recording package for Node.js applications",
"main": "index.js",
"keywords": [
"macos",
"screen",
"recording",
"capture",
"video",
"native",
"electron"
],
"author": "aslanonur",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aslanon/node-mac-recorder.git"
},
"homepage": "https://github.com/aslanon/node-mac-recorder#readme",
"bugs": {
"url": "https://github.com/aslanon/node-mac-recorder/issues"
},
"engines": {
"node": ">=14.0.0"
},
"os": [
"darwin"
],
"cpu": [
"x64",
"arm64"
],
"scripts": {
"test": "node test.js",
"install": "node install.js",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"clean": "node-gyp clean",
"test:window-selector": "node window-selector-test.js",
"example:window-selector": "node examples/window-selector-example.js",
"build:electron-safe": "node build-electron-safe.js",
"test:electron-safe": "node test-electron-safe.js",
"clean:electron-safe": "node-gyp clean && rm -rf build",
"canvas": "node make-canvas.js"
},
"dependencies": {
"node-addon-api": "^7.0.0"
},
"devDependencies": {
"node-gyp": "^10.0.0"
},
"gypfile": true
}