@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.
@@ -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
+ });