-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.45 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.45 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
{
"name": "@termless/cli",
"version": "0.3.1",
"description": "CLI and MCP server for termless — terminal capture, screenshots, and AI agent integration",
"keywords": [
"ai-agent",
"automation",
"cli",
"mcp",
"mcp-server",
"screenshot",
"terminal",
"terminal-capture",
"terminal-testing"
],
"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",
"directory": "packages/cli"
},
"bin": {
"termless": "./src/cli.ts"
},
"files": [
"dist"
],
"type": "module",
"module": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"publishConfig": {
"access": "public",
"bin": {
"termless": "./dist/cli.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@resvg/resvg-js": "^2.6.0",
"@silvery/commander": "^0.6.0",
"commander": "^13.0.0",
"zod": "^3.24.0"
},
"peerDependencies": {
"@termless/core": "*",
"@termless/xtermjs": "*"
},
"tsdown": {
"clean": true,
"dts": true,
"entry": [
"src/index.ts",
"src/cli.ts"
],
"format": "esm"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=23.6.0"
}
}