-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.64 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
{
"name": "herm-tui",
"version": "1.0.0-dev.1",
"private": true,
"description": "A modern TUI for Hermes Agent",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liftaris/herm.git"
},
"homepage": "https://github.com/liftaris/herm#readme",
"bugs": {
"url": "https://github.com/liftaris/herm/issues"
},
"bin": {
"herm": "src/index.tsx"
},
"engines": {
"bun": ">=1.3.0"
},
"scripts": {
"dev": "bun run --watch src/index.tsx",
"dev:perf": "PERF=1 bun run --watch src/index.tsx",
"dev:perf:verbose": "PERF=verbose bun run --watch src/index.tsx",
"dev:smol": "bun --smol run --watch src/index.tsx",
"dev:profile": "bun --cpu-prof --cpu-prof-dir=./profiles run src/index.tsx",
"dev:heap": "bun --heap-prof --heap-prof-dir=./profiles run src/index.tsx",
"dev:control": "CONTROL=1 bun run --watch src/index.tsx",
"dev:full": "PERF=1 CONTROL=1 bun run --watch src/index.tsx",
"gen-schema": "bun scripts/gen-schema.ts",
"showcase": "scripts/showcase/record.sh",
"build": "bun scripts/build.ts",
"start": "bun run dist/index.js",
"test": "bun test",
"typecheck": "bunx tsc --noEmit"
},
"dependencies": {
"@opentui/core": "0.2.2",
"@opentui/react": "0.2.2",
"gpt-tokenizer": "^3.4.0",
"open": "^11.0.0",
"react": "^19.2.5",
"web-tree-sitter": "0.25.10",
"yaml": "^2.8.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "1.3.13",
"@types/react": "^19.2.14",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3"
}
}