-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.41 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
{
"name": "ghostterm",
"version": "0.1.6",
"private": true,
"description": "Ghostty-style terminal surfaces in your workspace.",
"type": "module",
"scripts": {
"build": "npm run build:helper && node esbuild.config.mjs production",
"build:helper": "mkdir -p bin && cargo build --release --manifest-path pty-helper/Cargo.toml && cp pty-helper/target/release/ghostterm-pty bin/ghostterm-pty",
"check": "tsc --noEmit",
"lint:obsidian": "eslint . --max-warnings=0",
"review:audit": "npm audit --omit=dev",
"review:local": "npm run lint:obsidian && npm run check && npm run build && npm run review:audit",
"review:workflow": "nix shell nixpkgs#actionlint -c actionlint .github/workflows/release.yml",
"dev": "npm run build:helper && node esbuild.config.mjs"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/andyhtran/GhostTerm.git"
},
"bugs": {
"url": "https://github.com/andyhtran/GhostTerm/issues"
},
"homepage": "https://github.com/andyhtran/GhostTerm#readme",
"dependencies": {
"ghostty-web": "^0.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@eslint/json": "^0.14.0",
"@types/node": "^22.15.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.4",
"eslint-plugin-obsidianmd": "^0.3.0",
"globals": "^14.0.0",
"obsidian": "^1.8.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0"
}
}