@uru-intelligence/cli 0.1.0 → 0.3.54

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 +84 -14
  2. package/dist/uru.mjs +4951 -935
  3. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uru-intelligence/cli",
3
- "version": "0.1.0",
3
+ "version": "0.3.54",
4
4
  "private": false,
5
5
  "description": "Uru full-platform command line interface",
6
6
  "type": "module",
@@ -18,11 +18,16 @@
18
18
  "test:unit": "bun test",
19
19
  "format": "prettier --write . --ignore-path ../../.prettierignore",
20
20
  "format:check": "prettier --check . --ignore-path ../../.prettierignore",
21
- "ci": "bun run lint && bun run type-check && bun run test:unit && bun run format:check",
21
+ "ci": "bun run lint && bun run type-check && bun run test:unit && bun run docs:check && bun run format:check && bun run build && bun run smoke:package && bun run smoke:binaries",
22
22
  "build": "node scripts/build.mjs",
23
23
  "prepack": "bun run build",
24
24
  "docs:generate": "bun scripts/generate-docs.mjs",
25
- "smoke:staging": "node scripts/staging-smoke.mjs"
25
+ "docs:check": "bun scripts/generate-docs.mjs --check",
26
+ "smoke:staging": "node scripts/staging-smoke.mjs",
27
+ "smoke:package": "node scripts/package-smoke.mjs",
28
+ "build:binaries": "node scripts/build-binaries.mjs",
29
+ "build:binaries:matrix": "node scripts/build-binaries.mjs --all",
30
+ "smoke:binaries": "node scripts/binary-smoke.mjs"
26
31
  },
27
32
  "devDependencies": {
28
33
  "@uru/platform-operations": "workspace:*",