-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.13 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.13 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
53
54
55
56
57
{
"name": "tui-driver",
"version": "0.1.0",
"description": "Visual testing for CLI/TUI applications - like Playwright for terminals",
"repository": {
"type": "git",
"url": "git+https://github.com/vizzly-testing/tui-driver.git"
},
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./drivers/x11": "./src/drivers/x11.js",
"./drivers/pty": "./src/drivers/pty.js"
},
"scripts": {
"test": "node --test tests/*.test.js",
"test:docker": "./run-demo.sh npm test"
},
"files": [
"src",
"README.md",
"SPEC.md"
],
"keywords": [
"tui",
"cli",
"terminal",
"visual-testing",
"screenshot",
"automation"
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"optionalDependencies": {
"@xterm/headless": "^5.5.0",
"canvas": "^3.2.0",
"node-pty": "^1.0.0"
},
"peerDependencies": {
"@xterm/headless": ">=5.0.0",
"node-pty": ">=1.0.0"
},
"peerDependenciesMeta": {
"node-pty": {
"optional": true
},
"@xterm/headless": {
"optional": true
},
"canvas": {
"optional": true
}
}
}