@llmist/cli 9.1.0 → 9.1.2
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 +5 -3
- package/dist/cli.js.map +1 -1
- package/package.json +5 -3
- package/scripts/postinstall.js +66 -0
package/dist/cli.js
CHANGED
|
@@ -79,7 +79,7 @@ import { Command, InvalidArgumentError as InvalidArgumentError2 } from "commande
|
|
|
79
79
|
// package.json
|
|
80
80
|
var package_default = {
|
|
81
81
|
name: "@llmist/cli",
|
|
82
|
-
version: "9.1.
|
|
82
|
+
version: "9.1.2",
|
|
83
83
|
description: "CLI for llmist - run LLM agents from the command line",
|
|
84
84
|
type: "module",
|
|
85
85
|
main: "dist/cli.js",
|
|
@@ -91,7 +91,8 @@ var package_default = {
|
|
|
91
91
|
build: "tsup",
|
|
92
92
|
typecheck: "tsc --noEmit",
|
|
93
93
|
test: "bun test src",
|
|
94
|
-
clean: "rimraf dist"
|
|
94
|
+
clean: "rimraf dist",
|
|
95
|
+
postinstall: "node scripts/postinstall.js"
|
|
95
96
|
},
|
|
96
97
|
repository: {
|
|
97
98
|
type: "git",
|
|
@@ -102,7 +103,8 @@ var package_default = {
|
|
|
102
103
|
access: "public"
|
|
103
104
|
},
|
|
104
105
|
files: [
|
|
105
|
-
"dist"
|
|
106
|
+
"dist",
|
|
107
|
+
"scripts"
|
|
106
108
|
],
|
|
107
109
|
keywords: [
|
|
108
110
|
"llmist",
|