@alcyone-labs/arg-parser 2.2.1 → 2.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/README.md +146 -20
- package/dist/assets/.dxtignore.template +0 -1
- package/dist/core/ArgParserBase.d.ts.map +1 -1
- package/dist/dxt/DxtGenerator-testUtils.d.ts +22 -0
- package/dist/dxt/DxtGenerator-testUtils.d.ts.map +1 -0
- package/dist/dxt/DxtGenerator.d.ts +9 -67
- package/dist/dxt/DxtGenerator.d.ts.map +1 -1
- package/dist/index.cjs +367 -1382
- package/dist/index.cjs.map +1 -1
- package/dist/index.min.mjs +6059 -6986
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +367 -1382
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
- package/dist/assets/tsdown.dxt.config.ts +0 -37
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alcyone-labs/arg-parser",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"description": "A robust, type-safe command line argument parser with plugin architecture, dependency injection, Claude Desktop compliant MCP integration, autonomous DXT builds, and zero-dependency core functionality.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
"build:esm": "cross-env VITE_BUILD_FORMAT=es VITE_MINIFY_BUILD=false vite build",
|
|
87
87
|
"build:min": "cross-env VITE_BUILD_FORMAT=es VITE_MINIFY_BUILD=true vite build",
|
|
88
88
|
"build": "pnpm clean && pnpm run build:types && pnpm run build:cjs && pnpm run build:esm && pnpm run build:min && pnpm run build:assets",
|
|
89
|
-
"build:assets": "mkdir -p dist/assets && cp docs/MCP/icons/logo_1_small.jpg dist/assets/ && cp
|
|
89
|
+
"build:assets": "mkdir -p dist/assets && cp docs/MCP/icons/logo_1_small.jpg dist/assets/ && cp .dxtignore.template dist/assets/",
|
|
90
90
|
"build:watch": "tsc --watch",
|
|
91
91
|
"build:examples": "tsc --project tsconfig.examples.json",
|
|
92
92
|
"test:watch": "vitest",
|
|
@@ -109,7 +109,6 @@
|
|
|
109
109
|
"test:post-publish:mcp": "node scripts/post-publish-mcp-validation.mjs",
|
|
110
110
|
"test:post-publish:all": "pnpm test:post-publish && pnpm test:post-publish:mcp",
|
|
111
111
|
"validate:v2": "node scripts/validate-v2.mjs",
|
|
112
|
-
"tsdown:dxt": "tsdown -c tsdown.dxt.config.ts",
|
|
113
112
|
"dxt:validate": "npx @anthropic-ai/dxt validate",
|
|
114
113
|
"dxt:info": "npx @anthropic-ai/dxt info",
|
|
115
114
|
"dxt:sign": "npx @anthropic-ai/dxt sign --self-signed",
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/// <reference types="tsdown" />
|
|
2
|
-
|
|
3
|
-
import { defineConfig } from "tsdown/config";
|
|
4
|
-
|
|
5
|
-
export default defineConfig({
|
|
6
|
-
outDir: "dxt",
|
|
7
|
-
format: ["esm", "module"],
|
|
8
|
-
target: "node22",
|
|
9
|
-
// unbundle: true,
|
|
10
|
-
noExternal: () => true,
|
|
11
|
-
minify: false,
|
|
12
|
-
sourcemap: false,
|
|
13
|
-
clean: false,
|
|
14
|
-
alias: {
|
|
15
|
-
chalk: "@alcyone-labs/simple-chalk",
|
|
16
|
-
},
|
|
17
|
-
external: [
|
|
18
|
-
// Node.js built-ins only - everything else should be bundled for true autonomy
|
|
19
|
-
"stream",
|
|
20
|
-
"fs",
|
|
21
|
-
"path",
|
|
22
|
-
"url",
|
|
23
|
-
"util",
|
|
24
|
-
"events",
|
|
25
|
-
"child_process",
|
|
26
|
-
"os",
|
|
27
|
-
"tty",
|
|
28
|
-
"process",
|
|
29
|
-
"crypto",
|
|
30
|
-
"http",
|
|
31
|
-
"https",
|
|
32
|
-
"net",
|
|
33
|
-
"zlib",
|
|
34
|
-
],
|
|
35
|
-
platform: "node",
|
|
36
|
-
plugins: [],
|
|
37
|
-
});
|