-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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
49
50
51
52
{
"name": "vtac-terminal",
"version": "1.3.0",
"description": "A fantasy ASCII terminal emulator",
"main": "dist/lib.js",
"types": "dist/lib.d.ts",
"bin": {
"vtac": "dist/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "node ./dist/index.js",
"test": "NODE_OPTIONS='--no-experimental-webstorage' jest",
"test:watch": "NODE_OPTIONS='--no-experimental-webstorage' jest --watch",
"test:coverage": "NODE_OPTIONS='--no-experimental-webstorage' jest --coverage --coverageReporters=text-summary --coverageReporters=lcov"
},
"keywords": [
"terminal",
"ascii",
"serial",
"8-bit",
"pixel art",
"rs232",
"vt",
"vt-100",
"vt-102",
"binary",
"assembly",
"typescript"
],
"author": "A.C. Wright",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/acwright/VT-AC.git"
},
"homepage": "https://github.com/acwright/VT-AC",
"type": "commonjs",
"dependencies": {
"@kmamal/sdl": "^0.11.13",
"commander": "^14.0.3",
"figlet": "^1.10.0",
"serialport": "^13.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.3.3",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}