-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.7 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
{
"name": "@hasna/terminal",
"version": "4.3.18",
"description": "Smart terminal wrapper for AI agents and humans — structured output, token compression, MCP server, natural language",
"type": "module",
"files": [
"dist/**",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"t": "dist/cli.js",
"terminal": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.tsx",
"start": "bun dist/cli.js",
"benchmark": "bun run build && bun benchmarks/benchmark.mjs",
"benchmark:real": "bun run build && bun benchmarks/real-cli-benchmark.mjs",
"test": "bun test",
"no-cloud:source": "bun test src/no-cloud-contract.test.ts",
"no-cloud:pack": "bun run build && bun scripts/no-cloud-artifact-scan.mjs",
"prepack": "bun run build && bun scripts/no-cloud-artifact-scan.mjs",
"prepublishOnly": "bun test && bun run build && bun scripts/no-cloud-artifact-scan.mjs",
"postinstall": "mkdir -p $HOME/.hasna/terminal/profiles $HOME/.hasna/terminal/outputs 2>/dev/null || true"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@hasna/events": "^0.1.6",
"@hasna/mementos": "^0.10.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@typescript/vfs": "^1.6.4",
"commander": "^13.1.0",
"ink": "^5.0.1",
"react": "^18.2.0",
"zod": "^4.3.6"
},
"license": "Apache-2.0",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasna/terminal.git"
},
"devDependencies": {
"@types/bun": "^1.3.10",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3"
}
}