-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 950 Bytes
/
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
{
"name": "@theflyingape/xvt",
"version": "1.5.1",
"description": "an asynchronous terminal session handler",
"author": "Robert Hurst <[email protected]>",
"homepage": "https://robert.hurst-ri.us",
"keywords": [
"ansi",
"console",
"emulation",
"forms",
"linux",
"terminal"
],
"license": "MIT",
"os": [
"cros",
"linux"
],
"files": [
"lib"
],
"main": "lib/xvt.js",
"types": "lib/xvt.d.ts",
"devDependencies": {
"@types/node": "^18.7.11",
"typescript": "^4.7.4"
},
"bugs": {
"url": "https://github.com/theflyingape/xvt/issues"
},
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theflyingape/xvt.git"
},
"scripts": {
"build": "tsc",
"demo": "tsc -p demo --outDir demo; node demo/index",
"test": "exit 0"
}
}