-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.23 KB
/
package.json
File metadata and controls
125 lines (125 loc) · 3.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@termless/core",
"version": "0.6.0",
"description": "Headless terminal testing library — like Playwright, but for terminal apps. Cross-terminal conformance, composable selectors, 21+ Vitest matchers.",
"keywords": [
"ansi",
"cross-terminal",
"ghostty",
"headless",
"terminal",
"terminal-emulator",
"terminal-testing",
"testing",
"tui",
"tui-testing",
"vitest",
"xterm"
],
"homepage": "https://termless.dev/",
"bugs": {
"url": "https://github.com/beorn/termless/issues"
},
"license": "MIT",
"author": "Beorn",
"repository": {
"type": "git",
"url": "https://github.com/beorn/termless.git"
},
"workspaces": [
"packages/*"
],
"files": [
"dist",
"backends.json"
],
"type": "module",
"exports": {
".": "./src/index.ts",
"./registry": "./src/backends-advanced.ts",
"./svg": "./src/svg.ts",
"./png": "./src/png.ts"
},
"publishConfig": {
"access": "public",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./registry": {
"types": "./dist/backends-advanced.d.mts",
"import": "./dist/backends-advanced.mjs"
},
"./svg": {
"types": "./dist/svg.d.mts",
"import": "./dist/svg.mjs"
},
"./png": {
"types": "./dist/png.d.mts",
"import": "./dist/png.mjs"
}
}
},
"scripts": {
"test": "vitest run",
"typecheck": "tsc --noEmit",
"ci": "bun vitest run",
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"cli": "bun packages/cli/src/cli.ts",
"publish:all": "bun run publish:core && bun run publish:packages",
"publish:core": "npm publish",
"publish:packages": "for pkg in packages/xtermjs packages/ghostty packages/ghostty-native packages/vt100 packages/viterm packages/peekaboo packages/cli packages/alacritty packages/wezterm packages/kitty packages/libvterm packages/vt100-rust; do (cd $pkg && npm publish); done"
},
"devDependencies": {
"@termless/alacritty": "workspace:*",
"@termless/kitty": "workspace:*",
"@termless/libvterm": "workspace:*",
"@termless/peekaboo": "workspace:*",
"@termless/vt100-rust": "workspace:*",
"@termless/wezterm": "workspace:*",
"@types/bun": "^1.3.11",
"@types/node": "^22.19.15",
"@vue/server-renderer": "^3.5.31",
"loggily": "^0.4.0",
"silvery": "^0.4.2",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitepress-enrich": "^0.4.0",
"vitepress-plugin-llms": "^1.12.0",
"vitest": "^4.1.1",
"vue": "^3.5.31"
},
"peerDependencies": {
"node-pty": ">=1.0.0"
},
"peerDependenciesMeta": {
"node-pty": {
"optional": true
}
},
"optionalDependencies": {
"@resvg/resvg-js": "^2.6.2",
"gifenc": "^1.0.3",
"upng-js": "^2.1.0"
},
"tsdown": {
"clean": true,
"dts": true,
"entry": [
"src/index.ts",
"src/backends-advanced.ts",
"src/svg.ts",
"src/png.ts"
],
"format": "esm"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=23.6.0"
}
}