-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.85 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.85 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
{
"name": "@dwmkerr/shellwright",
"version": "0.1.11",
"type": "module",
"description": "Playwright for the shell - MCP server for terminal recording and automation",
"main": "dist/index.js",
"bin": {
"shellwright": "./dist/index.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"dev:http": "tsx watch src/index.ts --http --log-path log.jsonl",
"test": "jest",
"test:emulator": "tsx tests/run-tests.ts",
"test:k9s": "tsx tests/04-k9s/run.ts",
"lint": "eslint src/**/*.ts",
"eval": "cd evaluations && npm start",
"eval:compare": "cd evaluations && npm run compare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwmkerr/shellwright.git"
},
"bugs": {
"url": "https://github.com/dwmkerr/shellwright/issues"
},
"homepage": "https://github.com/dwmkerr/shellwright#readme",
"keywords": [
"mcp",
"terminal",
"recording",
"asciinema",
"shell",
"automation",
"playwright"
],
"author": "Dave Kerr",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"@resvg/resvg-js": "^2.6.2",
"@xterm/headless": "^6.1.0-beta.156",
"commander": "^14.0.2",
"express": "^5.2.1",
"gifenc": "^1.0.3",
"jimp": "^1.6.0",
"node-pty": "1.0.0",
"strip-ansi": "^7.1.2",
"zod": "^3.25.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"eslint": "^9.39.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.48.0"
}
}