forked from lucidvm/rfb
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "@computernewb/nodejs-rfb",
"version": "0.4.2",
"description": "Pure nodejs VNC (RFC 6143 / RFB Protocol) client, based on vnc-rfb-client",
"author": "Filipe Calaça Barbosa, ayunami2000, dither, modeco80",
"license": "MIT",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "parcel build src/index.ts --target node --target types"
},
"files": [
"./dist",
"README.md",
"README.fork.md",
"LICENSE"
],
"targets": {
"types": {},
"node": {
"context": "node",
"isLibrary": true,
"outputFormat": "esmodule"
}
},
"dependencies": {
"des.js": "^1.1.0",
"js-md4": "^0.3.2"
},
"devDependencies": {
"@parcel/packager-ts": "^2.15.2",
"@parcel/transformer-typescript-types": "^2.15.2",
"@types/node": "^20.12.7",
"parcel": "^2.15.2",
"prettier": "^3.2.5",
"typescript": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/computernewb/nodejs-rfb.git"
},
"bugs": {
"url": "https://github.com/computernewb/nodejs-rfb/issues"
},
"homepage": "https://github.com/computernewb/nodejs-rfb#readme",
"packageManager": "yarn@4.1.1"
}