@llmist/cli 10.1.1 → 10.3.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/dist/cli.js +15 -1
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +56 -0
- package/dist/index.js +552 -0
- package/dist/index.js.map +1 -0
- package/package.json +15 -1
package/dist/cli.js
CHANGED
|
@@ -76,7 +76,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
|
|
|
76
76
|
// package.json
|
|
77
77
|
var package_default = {
|
|
78
78
|
name: "@llmist/cli",
|
|
79
|
-
version: "10.
|
|
79
|
+
version: "10.3.0",
|
|
80
80
|
description: "CLI for llmist - run LLM agents from the command line",
|
|
81
81
|
type: "module",
|
|
82
82
|
main: "dist/cli.js",
|
|
@@ -84,6 +84,20 @@ var package_default = {
|
|
|
84
84
|
bin: {
|
|
85
85
|
llmist: "dist/cli.js"
|
|
86
86
|
},
|
|
87
|
+
exports: {
|
|
88
|
+
".": {
|
|
89
|
+
import: {
|
|
90
|
+
types: "./dist/cli.d.ts",
|
|
91
|
+
default: "./dist/cli.js"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"./gadgets": {
|
|
95
|
+
import: {
|
|
96
|
+
types: "./dist/index.d.ts",
|
|
97
|
+
default: "./dist/index.js"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
87
101
|
scripts: {
|
|
88
102
|
build: "tsup",
|
|
89
103
|
typecheck: "tsc --noEmit",
|