-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "node-mac-virtual-display",
"version": "1.0.9",
"description": "A Native module to create and handle virtual display on macOS",
"main": "index.js",
"types": "index.d.ts",
"gypfile": true,
"scripts": {
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"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": {
"chai": "^4.3.7",
"clang-format": "^1.8.0",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"node-gyp": "^10.2.0",
"prettier": "^2.8.1"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.2.1"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.mm": [
"clang-format -i"
]
},
"os": [
"darwin"
],
"publishConfig": {
"@enfp-dev-studio:registry": "https://npm.pkg.github.com"
}
}