-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.87 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
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
{
"name": "@idrive-remotepc/display-utility",
"version": "1.0.2",
"description": "Linux utility to retrieve various information about desktop display, capture screen and convert them into video frames using xrandr and x264 encoding",
"homepage": "https://github.com/idrive-remotepc/display-utility/blob/master/README.md",
"bugs": {
"url": "https://github.com/idrive-remotepc/display-utility/issues"
},
"author": "RemotePC™ Powered by IDrive Inc. <[email protected]> (https://www.remotepc.com/)",
"license": "MIT",
"os": [
"linux"
],
"cpu": [
"x64"
],
"main": "release/index.js",
"scripts": {
"transpile": "tsc --build tsconfig.json",
"lint": "tslint --project tsconfig.json --config tslint.json --fix",
"prepare": "npm run transpile",
"test": "node-gyp rebuild && npm run lint && npm run transpile && node release/test.js",
"build:dev": "npm run transpile && node-gyp rebuild --debug"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/idrive-remotepc/display-utility.git"
},
"keywords": [
"X11",
"Xrandr",
"Xtst",
"resolution",
"display",
"screen",
"output",
"linux",
"mode",
"display-utility",
"screen-capture",
"x264-encoding"
],
"devDependencies": {
"@types/bindings": "^1.3.0",
"@types/node": "^12.0.12",
"husky": "^2.7.0",
"lint-staged": "^8.2.1",
"tslint": "^5.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.2"
},
"dependencies": {
"bindings": "^1.5.0",
"lock-system": "^2.0.0",
"node-addon-api": "^1.7.1"
},
"files": [
"headers",
"native_src",
"binding.gyp",
"release/index.js",
"release/index.d.ts",
"x264"
]
}