tui-cap 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,61 @@
1
+ {
2
+ "name": "tui-cap",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Capture GitHub Copilot CLI TUI output as editable, branded SVG for marketing and product shots",
6
+ "license": "MIT",
7
+ "author": "Cameron Foxly",
8
+ "homepage": "https://github.com/CameronFoxly/GHCP-TUI-Capture#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/CameronFoxly/GHCP-TUI-Capture.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/CameronFoxly/GHCP-TUI-Capture/issues"
15
+ },
16
+ "keywords": [
17
+ "svg",
18
+ "terminal",
19
+ "ansi",
20
+ "tui",
21
+ "copilot",
22
+ "github-copilot",
23
+ "figma",
24
+ "screenshot",
25
+ "asciinema",
26
+ "recording",
27
+ "cli"
28
+ ],
29
+ "bin": {
30
+ "tui-cap": "dist/cli.js"
31
+ },
32
+ "main": "dist/cli.js",
33
+ "files": [
34
+ "dist",
35
+ "README.md"
36
+ ],
37
+ "scripts": {
38
+ "build": "tsc && rm -rf dist/web && cp -r src/web dist/web && chmod +x dist/cli.js",
39
+ "prepublishOnly": "npm run build",
40
+ "dev": "tsx src/cli.ts",
41
+ "gui": "tsx src/cli.ts gui",
42
+ "start": "node dist/cli.js",
43
+ "typecheck": "tsc --noEmit",
44
+ "test": "tsx --test test/*.test.ts",
45
+ "sample": "tsx scripts/gen-sample.ts",
46
+ "render:sample": "tsx src/cli.ts render examples/sample.ans -o examples/sample.svg --title \"GitHub Copilot CLI\"",
47
+ "record:copilot-sample": "bash scripts/record-copilot-sample.sh"
48
+ },
49
+ "engines": {
50
+ "node": ">=20"
51
+ },
52
+ "dependencies": {
53
+ "@xterm/headless": "^5.5.0"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^24.0.0",
57
+ "node-pty": "^1.0.0",
58
+ "tsx": "^4.19.0",
59
+ "typescript": "^5.6.0"
60
+ }
61
+ }