-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.61 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
{
"name": "@zenyr/mcp-pty",
"version": "0.0.1",
"devDependencies": {
"@biomejs/biome": "2.2.6",
"@commitlint/cli": "20.1.0",
"@commitlint/config-conventional": "20.0.0",
"@types/bun": "1.3.0",
"husky": "^9.1.7",
"semver": "7.7.3",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"bin": {
"mcp-pty": "./packages/mcp-server/src/index.ts"
},
"private": true,
"scripts": {
"test": "bun test --concurrent --max-concurrency=4",
"test:sequential": "bun test",
"inspect": "bun x --bun @modelcontextprotocol/inspector mcp-pty",
"cli": "bun --filter=\"@pkgs/cli-inspector\" run start",
"reset": "bun x --bun rimraf './**/node_modules' node_modules; bun i",
"type-check": "bun --filter=\"*\" run check",
"biome:all": "biome check --write && biome format --write && biome lint --write",
"check": "biome check --write",
"format": "biome format --write",
"lint": "biome lint --write",
"dev": "bun --filter=\"@pkgs/*\" run dev",
"dev:website": "bun --cwd=packages/website run dev",
"start": "bun --filter=\"mcp-pty\" run start",
"restart": "bun restart.ts",
"publish": "bun --filter=\"mcp-pty\" run prepublishOnly && cd packages/mcp-pty && npm publish",
"prepare": "husky",
"dedupe": "bun pm cache rm && bun install"
},
"type": "module",
"workspaces": [
"packages/*"
],
"dependencies": {
"@xterm/headless": "^5.5.0",
"@xterm/xterm": "^5.5.0",
"@zenyr/bun-pty": "0.4.3",
"strip-ansi": "^7.1.2"
},
"patchedDependencies": {
"bash-parser@0.5.0": "patches/bash-parser@0.5.0.patch"
}
}