-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "node-mac-virtual-display",
"version": "1.0.12",
"description": "A Native module to create and handle virtual display on macOS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22"
},
"gypfile": true,
"scripts": {
"build": "npm run build:ts && node-gyp rebuild",
"build:ts": "tsc",
"clean": "node-gyp clean",
"rebuild:electron": "electron-rebuild -f -w node-mac-virtual-display",
"test:electron": "npm run rebuild:electron && electron examples/electron/main.js",
"lint": "clang-format --dry-run -Werror ./src/virtual_display.mm && prettier --check index.js",
"format": "clang-format -i ./src/virtual_display.mm && prettier --write index.js",
"test": "./node_modules/.bin/mocha --reporter spec",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ENFP-Dev-Studio/node-mac-virtual-display"
},
"author": "ENFP-Dev-Studio",
"license": "MIT",
"devDependencies": {
"@electron/rebuild": "^4.0.3",
"@types/bindings": "^1.5.5",
"@types/node": "^25.2.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"chai": "^6.2.2",
"clang-format": "^1.8.0",
"electron": "^40.1.0",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"node-gyp": "^12.2.0",
"pkg": "^5.8.1",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.5.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
}
}