@alcyone-labs/arg-parser 1.2.0 → 2.1.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 +730 -1209
- package/dist/assets/.dxtignore.template +38 -0
- package/dist/assets/logo_1_small.jpg +0 -0
- package/dist/assets/tsdown.dxt.config.ts +37 -0
- package/dist/index.cjs +6506 -3723
- package/dist/index.cjs.map +1 -1
- package/dist/index.min.mjs +10331 -7798
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +6515 -3740
- package/dist/index.mjs.map +1 -1
- package/package.json +35 -17
- package/dist/src/ArgParser.d.ts +0 -148
- package/dist/src/ArgParser.d.ts.map +0 -1
- package/dist/src/ArgParserBase.d.ts +0 -125
- package/dist/src/ArgParserBase.d.ts.map +0 -1
- package/dist/src/FlagManager.d.ts +0 -16
- package/dist/src/FlagManager.d.ts.map +0 -1
- package/dist/src/fuzzy-test-cli.d.ts +0 -5
- package/dist/src/fuzzy-test-cli.d.ts.map +0 -1
- package/dist/src/fuzzy-tester.d.ts +0 -101
- package/dist/src/fuzzy-tester.d.ts.map +0 -1
- package/dist/src/index.d.ts +0 -7
- package/dist/src/index.d.ts.map +0 -1
- package/dist/src/mcp-integration.d.ts +0 -31
- package/dist/src/mcp-integration.d.ts.map +0 -1
- package/dist/src/types.d.ts +0 -165
- package/dist/src/types.d.ts.map +0 -1
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# DXT ignore file template
|
|
2
|
+
# Generated by @alcyone-labs/arg-parser
|
|
3
|
+
|
|
4
|
+
# Development files
|
|
5
|
+
.git/
|
|
6
|
+
.gitignore
|
|
7
|
+
.env
|
|
8
|
+
.env.*
|
|
9
|
+
|
|
10
|
+
# OS files
|
|
11
|
+
.DS_Store
|
|
12
|
+
Thumbs.db
|
|
13
|
+
|
|
14
|
+
# IDE files
|
|
15
|
+
.vscode/
|
|
16
|
+
.idea/
|
|
17
|
+
*.swp
|
|
18
|
+
*.swo
|
|
19
|
+
|
|
20
|
+
# Test files
|
|
21
|
+
test/
|
|
22
|
+
tests/
|
|
23
|
+
*.test.js
|
|
24
|
+
*.test.ts
|
|
25
|
+
*.spec.js
|
|
26
|
+
*.spec.ts
|
|
27
|
+
|
|
28
|
+
# Build artifacts and logs
|
|
29
|
+
*.log
|
|
30
|
+
*.tmp
|
|
31
|
+
temp-dxt-build/
|
|
32
|
+
|
|
33
|
+
# TSDown config files (not needed in final package)
|
|
34
|
+
tsdown.dxt.config.ts
|
|
35
|
+
.dxtignore.template
|
|
36
|
+
|
|
37
|
+
# Source files (replaced by bundled output)
|
|
38
|
+
# Note: The original entry point will be replaced by the bundled version
|
|
Binary file
|
|
@@ -0,0 +1,37 @@
|
|
|
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
|
+
});
|