exomind 0.1.1 → 0.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 +49 -1
- package/dist/cli.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3116,6 +3116,54 @@ var {
|
|
|
3116
3116
|
Help
|
|
3117
3117
|
} = import_index.default;
|
|
3118
3118
|
|
|
3119
|
+
// package.json
|
|
3120
|
+
var package_default = {
|
|
3121
|
+
name: "exomind",
|
|
3122
|
+
version: "0.1.2",
|
|
3123
|
+
description: "ExoMind \u8DE8\u5E73\u53F0\u547D\u4EE4\u884C\u5BA2\u6237\u7AEF \u2014 \u901A\u8FC7 REST \u4E0E ExoMind \u77E5\u8BC6\u5E93\u4EA4\u4E92(ingest/query/search/review),\u66FF\u4EE3 Windows \u4E0D\u53EF\u7528\u7684 MCP \u5BA2\u6237\u7AEF\u3002",
|
|
3124
|
+
bin: {
|
|
3125
|
+
exomind: "dist/cli.js"
|
|
3126
|
+
},
|
|
3127
|
+
files: [
|
|
3128
|
+
"dist",
|
|
3129
|
+
"skill"
|
|
3130
|
+
],
|
|
3131
|
+
engines: {
|
|
3132
|
+
node: ">=18"
|
|
3133
|
+
},
|
|
3134
|
+
scripts: {
|
|
3135
|
+
build: "tsup",
|
|
3136
|
+
dev: "tsup --watch",
|
|
3137
|
+
test: "node --test --import tsx test/*.test.ts",
|
|
3138
|
+
prepublishOnly: "npm run build"
|
|
3139
|
+
},
|
|
3140
|
+
dependencies: {},
|
|
3141
|
+
devDependencies: {
|
|
3142
|
+
"@types/node": "^22.10.0",
|
|
3143
|
+
commander: "^12.1.0",
|
|
3144
|
+
picocolors: "^1.1.1",
|
|
3145
|
+
tsup: "^8.3.5",
|
|
3146
|
+
tsx: "^4.19.2",
|
|
3147
|
+
typescript: "^5.7.2"
|
|
3148
|
+
},
|
|
3149
|
+
keywords: [
|
|
3150
|
+
"exomind",
|
|
3151
|
+
"knowledge-base",
|
|
3152
|
+
"cli",
|
|
3153
|
+
"mcp-alternative",
|
|
3154
|
+
"cross-platform"
|
|
3155
|
+
],
|
|
3156
|
+
license: "MIT",
|
|
3157
|
+
repository: {
|
|
3158
|
+
type: "git",
|
|
3159
|
+
url: "https://github.com/helloworldtang/exomind-cli.git"
|
|
3160
|
+
},
|
|
3161
|
+
homepage: "https://github.com/helloworldtang/exomind-cli#readme",
|
|
3162
|
+
bugs: {
|
|
3163
|
+
url: "https://github.com/helloworldtang/exomind-cli/issues"
|
|
3164
|
+
}
|
|
3165
|
+
};
|
|
3166
|
+
|
|
3119
3167
|
// src/api.ts
|
|
3120
3168
|
var ApiError = class extends Error {
|
|
3121
3169
|
status;
|
|
@@ -3944,7 +3992,7 @@ async function install(_client, opts) {
|
|
|
3944
3992
|
}
|
|
3945
3993
|
|
|
3946
3994
|
// src/cli.ts
|
|
3947
|
-
var VERSION =
|
|
3995
|
+
var VERSION = package_default.version;
|
|
3948
3996
|
function collect(value, previous) {
|
|
3949
3997
|
return [...previous ?? [], value];
|
|
3950
3998
|
}
|