-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "webtty",
"version": "0.0.0-development",
"description": "Web TTY for running CLI/TUI applications in a browser tab, across platforms",
"license": "MIT",
"bin": {
"webtty": "dist/cli/index.js"
},
"files": [
"dist"
],
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rimraf dist node_modules",
"preinstall": "bun scripts/check-pkg-manager.ts",
"lint": "tsc --noEmit -p tsconfig.lint.json && biome check .",
"lint:fix": "tsc --noEmit -p tsconfig.lint.json && bunx biome check --write .",
"test": "bun test",
"test:coverage": "bun test --coverage",
"build": "bun run scripts/build.ts",
"server": "bun run dist/server/index.js",
"server:node": "node dist/server/index.js",
"webtty": "bun -- dist/cli/index.js",
"prepack": "bun scripts/clean-pkg-scripts.ts strip",
"postpack": "bun scripts/clean-pkg-scripts.ts restore"
},
"dependencies": {
"@lydell/node-pty": "1.2.0-beta.3",
"ghostty-web": "0.4.0-next.14.g6a1a50d",
"ws": "8.20.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.8",
"@types/bun": "1.3.11",
"@types/ws": "8.18.1",
"rimraf": "6.1.3",
"semantic-release": "24.2.9",
"tsx": "4.21.0",
"typescript": "5.9.3"
}
}