terminuz 0.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,10 +1,79 @@
1
1
  {
2
2
  "name": "terminuz",
3
- "version": "0.0.1",
4
- "description": "Terminuz - The Open Source AI Coding Agent (placeholder)",
3
+ "version": "2.0.0",
4
+ "description": "Terminuz - The Open Source AI Coding Agent",
5
5
  "license": "MIT",
6
+ "type": "module",
7
+ "homepage": "https://github.com/N1ghthill/terminuz#readme",
6
8
  "repository": {
7
9
  "type": "git",
8
10
  "url": "git+https://github.com/N1ghthill/terminuz.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/N1ghthill/terminuz/issues"
14
+ },
15
+ "keywords": [
16
+ "ai",
17
+ "agent",
18
+ "coding-agent",
19
+ "code-agent",
20
+ "developer-tools",
21
+ "terminal",
22
+ "tui",
23
+ "typescript",
24
+ "llm",
25
+ "claude",
26
+ "anthropic",
27
+ "openai",
28
+ "gpt",
29
+ "deepseek",
30
+ "ollama",
31
+ "openrouter",
32
+ "mcp",
33
+ "model-context-protocol",
34
+ "multi-provider",
35
+ "cli"
36
+ ],
37
+ "files": [
38
+ "dist",
39
+ "LICENSE",
40
+ "README.md",
41
+ "package.json"
42
+ ],
43
+ "bin": {
44
+ "terminuz": "dist/index.js"
45
+ },
46
+ "exports": {
47
+ "./cli": "./dist/index.js"
48
+ },
49
+ "engines": {
50
+ "node": ">=22.0.0"
51
+ },
52
+ "publishConfig": {
53
+ "access": "public"
54
+ },
55
+ "dependencies": {
56
+ "chalk": "^5.4.1",
57
+ "commander": "^12.1.0",
58
+ "effect": "^3.12.7",
59
+ "ink": "^7.0.3",
60
+ "react": "^19.2.0",
61
+ "zod": "^3.24.1",
62
+ "zod-to-json-schema": "^3.24.1"
63
+ },
64
+ "devDependencies": {
65
+ "@types/node": "^22.20.0",
66
+ "tsup": "^8.3.5",
67
+ "tsx": "^4.19.2",
68
+ "typescript": "^5.7.2",
69
+ "vitest": "^3.2.4",
70
+ "@terminuz/cli": "1.1.31"
71
+ },
72
+ "scripts": {
73
+ "build": "tsup",
74
+ "dev": "TSX_TSCONFIG_PATH=tsconfig.dev.json node --watch --import tsx src/index.ts --cwd \"$INIT_CWD\"",
75
+ "typecheck": "tsc --noEmit",
76
+ "lint": "eslint src --ext .ts",
77
+ "test": "pnpm --filter @terminuz/cli build && pnpm build && vitest run --passWithNoTests"
9
78
  }
10
- }
79
+ }