-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.35 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
{
"name": "@gaurav-gosain/webterm",
"version": "0.1.0",
"description": "An embeddable browser terminal built on xterm.js, with kitty graphics, a clipboard layer that works on insecure origins, and reference-checked unicode widths.",
"license": "MIT",
"type": "module",
"sideEffects": [
"*.css"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./transport": {
"types": "./dist/transport/index.d.ts",
"import": "./dist/transport/index.js"
},
"./themes": {
"types": "./dist/themes/index.d.ts",
"import": "./dist/themes/index.js"
},
"./css": "./dist/webterm.css",
"./webterm.css": "./dist/webterm.css",
"./package.json": "./package.json",
"./chrome": {
"types": "./dist/chrome/index.d.ts",
"import": "./dist/chrome/index.js"
},
"./chrome.css": "./dist/chrome.css"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "npm run test:unit && npm run test:browser",
"test:unit": "node --import ./test/register-ts.mjs --test \"test/unit/*.test.ts\"",
"test:browser": "npm run build && playwright test",
"check": "npm run typecheck && npm run build && npm run test:unit",
"themes": "node scripts/themes/generate.mjs",
"themes:check": "node scripts/themes/generate.mjs --check",
"prebuild": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\""
},
"peerDependencies": {
"@xterm/addon-fit": ">=0.10.0",
"@xterm/xterm": "^5.5.0 || >=6.1.0-beta.0"
},
"dependencies": {
"vtgl": "file:../vtgl"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/node": "^22.10.0",
"@xterm/addon-canvas": "0.8.0-beta.48",
"@xterm/addon-fit": "0.12.0-beta.290",
"@xterm/addon-image": "0.10.0-beta.290",
"@xterm/addon-unicode-graphemes": "0.5.0-beta.290",
"@xterm/addon-web-links": "0.13.0-beta.290",
"@xterm/addon-webgl": "0.20.0-beta.289",
"@xterm/xterm": "6.1.0-beta.290",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"keywords": [
"terminal",
"xterm",
"kitty-graphics",
"websocket",
"webtransport",
"pty",
"window-chrome",
"macos"
]
}