-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "@kud/cli-shot",
"version": "0.2.1",
"type": "module",
"description": "Automatic screenshots of interactive CLIs — pty capture, terminal emulation, PNG out",
"license": "MIT",
"homepage": "https://kud.io/projects/cli-shot",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/cli-shot.git"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@xterm/addon-serialize": "0.14.0",
"@xterm/headless": "6.0.0",
"commander": "15.0.0",
"node-pty": "1.1.0"
},
"devDependencies": {
"@types/node": "22.20.1",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.1.10"
},
"allowScripts": {
"node-pty@1.1.0": true
},
"bin": {
"cli-shot": "dist/cli.js"
}
}