dimcode 0.0.5-beta.19 → 0.0.5-beta.21

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.
Files changed (3) hide show
  1. package/README.md +16 -7
  2. package/dist/cli.mjs +670 -450
  3. package/package.json +3 -2
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "dimcode",
3
3
  "type": "module",
4
- "version": "0.0.5-beta.19",
4
+ "version": "0.0.5-beta.21",
5
5
  "description": "Dim Code CLI built on dreams",
6
6
  "exports": {
7
7
  ".": {
@@ -32,7 +32,8 @@
32
32
  "build:binary:linux-arm64": "bun run build.mjs --binary --target=bun-linux-arm64",
33
33
  "build:binary:windows": "bun run build.mjs --binary --target=bun-windows-x64",
34
34
  "cli": "bun scripts/cli-watch.mjs",
35
- "cli:run": "bun src/cli.ts",
35
+ "cli:run": "esno src/cli.ts",
36
+ "cli:run:node": "node --enable-source-maps --import tsx src/cli.ts",
36
37
  "cli:debug": "DIMCODE_DEBUG=1 bun scripts/cli-watch.mjs --watch -- --debug",
37
38
  "cli:debug:run": "DIMCODE_DEBUG=1 bun src/cli.ts --debug",
38
39
  "test": "bun test --preload ./test/setup.ts",