forked from lucidvm/rfb
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "@computernewb/nodejs-rfb",
"version": "0.3.0",
"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"
}
},
"devDependencies": {
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"@types/node": "^20.12.7",
"parcel": "^2.12.0",
"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"
}