-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.52 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
{
"name": "@jonaskahn/hyper-kit",
"version": "0.0.1",
"description": "All-in-one power-up cartridge for Hyper Terminal: vertical tab bar, neon accents, command status badges, live PWD tracking, tool inventory panel, drag & drop reorder, and a deep-dark backdrop — every feature toggled on/off from config",
"main": "dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonaskahn/hyper-kit"
},
"scripts": {
"generate:icons": "node scripts/generate-agent-icons.mjs",
"build": "node scripts/generate-agent-icons.mjs && tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,ts}\"",
"format:check": "prettier --check \"**/*.{js,ts}\"",
"check": "npm run typecheck && npm run lint && npm run format:check && npm test && npm run build"
},
"keywords": [
"hyper",
"hyper-plugin",
"tab",
"tabbar",
"all-in-one",
"glass",
"theme",
"osc7",
"productivity"
],
"devDependencies": {
"@types/node": "^22.0.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/seamless-immutable": "^7.1.19",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.0.0",
"seamless-immutable": "^7.1.4",
"typescript": "^5.6.0",
"typescript-eslint": "^8.0.0",
"vitest": "^3.0.0"
}
}