-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.11 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
126
127
{
"name": "@myrialabs/ptykit",
"version": "0.0.5",
"description": "PTY sessions over WebSocket for Node & Bun — collaborative rooms, serialized-scrollback reattach, and a resilient browser client with one typed API.",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"import": "./dist/core/index.js"
},
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./client": {
"types": "./dist/client/index.d.ts",
"import": "./dist/client/index.js"
},
"./xterm": {
"types": "./dist/client/xterm.d.ts",
"import": "./dist/client/xterm.js"
},
"./xterm.css": "./src/client/xterm.css",
"./svelte": {
"types": "./src/client/svelte/index.d.ts",
"svelte": "./src/client/svelte/index.js",
"default": "./src/client/svelte/index.js"
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist",
"src/client/svelte",
"src/client/xterm.css",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "bun test",
"clean": "rm -rf dist",
"prepublishOnly": "bun run clean && bun run build"
},
"keywords": [
"pty",
"pseudoterminal",
"terminal",
"websocket",
"xterm",
"bun-pty",
"node-pty",
"scrollback",
"reattach",
"shell",
"collaborative",
"browser-terminal",
"svelte",
"bun",
"node",
"typescript"
],
"author": "Myria Labs",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/myrialabs/ptykit.git"
},
"homepage": "https://github.com/myrialabs/ptykit#readme",
"bugs": {
"url": "https://github.com/myrialabs/ptykit/issues"
},
"dependencies": {
"@xterm/headless": "^6.0.0",
"@xterm/addon-serialize": "^0.14.0",
"@xterm/xterm": "^6.0.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-ligatures": "^0.10.0"
},
"optionalDependencies": {
"bun-pty": "^0.4.10",
"node-pty": "^1.1.0",
"ws": "^8.21.0"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"peerDependenciesMeta": {
"svelte": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/bun": "latest",
"@types/node": "^22.10.0",
"@types/ws": "^8.18.1",
"@xterm/addon-clipboard": "^0.2.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-ligatures": "^0.10.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"svelte": "^5.0.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.37.0"
}
}