@llmist/cli 8.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 ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "@llmist/cli",
3
+ "version": "8.0.0",
4
+ "description": "CLI for llmist - run LLM agents from the command line",
5
+ "type": "module",
6
+ "main": "dist/cli.js",
7
+ "types": "dist/cli.d.ts",
8
+ "bin": {
9
+ "llmist": "dist/cli.js"
10
+ },
11
+ "scripts": {
12
+ "build": "tsup",
13
+ "typecheck": "tsc --noEmit",
14
+ "test": "bun test src",
15
+ "clean": "rimraf dist"
16
+ },
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/zbigniewsobiecki/llmist.git",
20
+ "directory": "packages/cli"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "keywords": [
29
+ "llmist",
30
+ "cli",
31
+ "llm",
32
+ "agents",
33
+ "terminal",
34
+ "tui"
35
+ ],
36
+ "author": "Zbigniew Sobiecki <zbigniew@sobiecki.name>",
37
+ "license": "MIT",
38
+ "sideEffects": false,
39
+ "dependencies": {
40
+ "llmist": "^8.0.0",
41
+ "@unblessed/node": "^1.0.0-alpha.23",
42
+ "chalk": "^5.6.2",
43
+ "commander": "^12.1.0",
44
+ "diff": "^8.0.2",
45
+ "eta": "^4.4.1",
46
+ "js-toml": "^1.0.2",
47
+ "js-yaml": "^4.1.0",
48
+ "marked": "^15.0.12",
49
+ "marked-terminal": "^7.3.0",
50
+ "zod": "^4.1.12"
51
+ },
52
+ "devDependencies": {
53
+ "@llmist/testing": "^8.0.0",
54
+ "@types/diff": "^8.0.0",
55
+ "@types/js-yaml": "^4.0.9",
56
+ "@types/marked-terminal": "^6.1.1",
57
+ "@types/node": "^20.12.7",
58
+ "bun-types": "^1.3.2",
59
+ "rimraf": "^5.0.5",
60
+ "tsup": "^8.3.5",
61
+ "typescript": "^5.4.5"
62
+ }
63
+ }