-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2 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
{
"name": "ghostty-web",
"version": "0.3.0",
"description": "Web-based terminal emulator using Ghostty's VT100 parser via WebAssembly",
"type": "module",
"main": "./dist/ghostty-web.umd.cjs",
"module": "./dist/ghostty-web.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/ghostty-web.js",
"require": "./dist/ghostty-web.umd.cjs"
},
"./ghostty-vt.wasm": "./ghostty-vt.wasm"
},
"files": [
"dist",
"ghostty-vt.wasm",
"README.md"
],
"keywords": [
"terminal",
"terminal-emulator",
"ghostty",
"web",
"xterm",
"vt100",
"wasm",
"webassembly",
"ansi",
"tty"
],
"repository": {
"type": "git",
"url": "https://github.com/coder/ghostty-web.git"
},
"bugs": "https://github.com/coder/ghostty-web/issues",
"homepage": "https://github.com/coder/ghostty-web#readme",
"license": "MIT",
"author": "Coder",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite --port 8000",
"demo": "node demo/bin/demo.js",
"demo:dev": "node demo/bin/demo.js --dev",
"prebuild": "bun install",
"build": "bun run clean && bun run build:wasm && bun run build:lib && bun run build:wasm-copy",
"build:wasm": "./scripts/build-wasm.sh",
"build:lib": "vite build",
"build:wasm-copy": "cp ghostty-vt.wasm dist/",
"clean": "rm -rf dist",
"preview": "vite preview",
"test": "bun test",
"typecheck": "tsc --noEmit",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write --cache .",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@happy-dom/global-registrator": "^15.11.0",
"@types/bun": "^1.3.2",
"@xterm/headless": "^5.5.0",
"@xterm/xterm": "^5.5.0",
"mitata": "^1.0.34",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^4.5.0",
"vite-plugin-dts": "^4.5.4"
}
}