@dench.com/cli 0.2.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 +151 -0
- package/agentKind.ts +58 -0
- package/crm.ts +1402 -0
- package/dench +10 -0
- package/dench.mjs +10 -0
- package/dench.ts +3305 -0
- package/fs-daemon +10 -0
- package/fs-daemon.ts +682 -0
- package/host.ts +44 -0
- package/lib/cli-args.ts +52 -0
- package/openUrl.ts +120 -0
- package/package.json +35 -0
- package/session.ts +504 -0
package/dench
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const entrypoint = new URL("./dench.ts", import.meta.url).href;
|
|
4
|
+
|
|
5
|
+
if (process.versions.bun) {
|
|
6
|
+
await import(entrypoint);
|
|
7
|
+
} else {
|
|
8
|
+
const { tsImport } = await import("tsx/esm/api");
|
|
9
|
+
await tsImport(entrypoint, import.meta.url);
|
|
10
|
+
}
|
package/dench.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
|
|
3
|
+
const entrypoint = new URL("./dench.ts", import.meta.url).href;
|
|
4
|
+
|
|
5
|
+
if (process.versions.bun) {
|
|
6
|
+
await import(entrypoint);
|
|
7
|
+
} else {
|
|
8
|
+
const { tsImport } = await import("tsx/esm/api");
|
|
9
|
+
await tsImport(entrypoint, import.meta.url);
|
|
10
|
+
}
|