@uru-intelligence/cli 0.3.61 → 0.4.12

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 (5) hide show
  1. package/CHANGELOG.md +69 -0
  2. package/README.md +109 -19
  3. package/dist/library.mjs +4439 -1704
  4. package/dist/uru.mjs +9738 -2806
  5. package/package.json +63 -60
package/package.json CHANGED
@@ -1,62 +1,65 @@
1
1
  {
2
- "name": "@uru-intelligence/cli",
3
- "version": "0.3.61",
4
- "private": false,
5
- "description": "Uru full-platform command line interface",
6
- "repository": {
7
- "type": "git",
8
- "url": "git+https://github.com/Ignition-Forward/uru-workspace-platform.git",
9
- "directory": "apps/cli"
10
- },
11
- "uru": {
12
- "mcpPackage": "uru-mcp@3.7.2"
13
- },
14
- "type": "module",
15
- "bin": {
16
- "uru": "dist/uru.mjs"
17
- },
18
- "exports": {
19
- ".": "./dist/library.mjs",
20
- "./cli": "./dist/uru.mjs"
21
- },
22
- "scripts": {
23
- "lint": "oxlint . --type-aware",
24
- "lint:fix": "oxlint . --type-aware --fix",
25
- "type-check": "tsc --noEmit",
26
- "test": "bun test",
27
- "test:unit": "bun test",
28
- "format": "prettier --write . --ignore-path ../../.prettierignore",
29
- "format:check": "prettier --check . --ignore-path ../../.prettierignore",
30
- "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",
31
- "build": "node scripts/build.mjs",
32
- "prepack": "bun run build",
33
- "docs:generate": "bun scripts/generate-docs.mjs",
34
- "docs:check": "bun scripts/generate-docs.mjs --check",
35
- "smoke:staging": "node scripts/staging-smoke.mjs",
36
- "smoke:package": "node scripts/package-smoke.mjs",
37
- "smoke:mcp-pin": "node scripts/mcp-pin-smoke.mjs",
38
- "smoke:registry": "node scripts/registry-smoke.mjs",
39
- "build:binaries": "node scripts/build-binaries.mjs",
40
- "build:binaries:matrix": "node scripts/build-binaries.mjs --all",
41
- "smoke:binaries": "node scripts/binary-smoke.mjs"
42
- },
43
- "devDependencies": {
44
- "@stricli/core": "1.3.0",
45
- "@uru/api-client": "workspace:*",
46
- "@uru/platform-operations": "workspace:*",
47
- "@types/node": "24.13.3",
48
- "bun-types": "1.3.13",
49
- "typescript": "7.0.2"
50
- },
51
- "packageManager": "bun@1.3.13",
52
- "engines": {
53
- "node": ">=24"
54
- },
55
- "files": [
56
- "dist",
57
- "README.md"
58
- ],
59
- "publishConfig": {
60
- "access": "public"
61
- }
2
+ "name": "@uru-intelligence/cli",
3
+ "version": "0.4.12",
4
+ "private": false,
5
+ "description": "Uru full-platform command line interface",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Ignition-Forward/uru-workspace-platform.git",
9
+ "directory": "apps/cli"
10
+ },
11
+ "bin": {
12
+ "uru": "dist/uru.mjs"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "README.md",
17
+ "CHANGELOG.md"
18
+ ],
19
+ "type": "module",
20
+ "exports": {
21
+ ".": "./dist/library.mjs",
22
+ "./cli": "./dist/uru.mjs"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "scripts": {
28
+ "lint": "node ../../scripts/run-with-repo-node.mjs oxlint --type-aware --deny-warnings -c ../../oxlint.inventory.config.mts .",
29
+ "lint:fix": "node ../../scripts/run-with-repo-node.mjs oxlint --type-aware --deny-warnings -c ../../oxlint.inventory.config.mts --fix .",
30
+ "type-check": "tsc --noEmit",
31
+ "test": "bun test",
32
+ "test:unit": "bun test",
33
+ "format": "prettier --write . --ignore-path ../../.prettierignore",
34
+ "format:check": "prettier --check . --ignore-path ../../.prettierignore",
35
+ "ci": "bun run lint && bun run type-check && bun run test:unit && bun run docs:check && bun run changelog:check && bun run format:check && bun run build && bun run smoke:package && bun run smoke:binaries",
36
+ "build": "node scripts/build.mjs",
37
+ "prepack": "bun run build",
38
+ "docs:generate": "bun scripts/generate-docs.mjs",
39
+ "docs:check": "bun scripts/generate-docs.mjs --check",
40
+ "changelog:check": "bun run --cwd ../.. release:changelog:check",
41
+ "smoke:staging": "node scripts/staging-smoke.mjs",
42
+ "smoke:package": "node scripts/package-smoke.mjs",
43
+ "smoke:mcp-pin": "node scripts/mcp-pin-smoke.mjs",
44
+ "build:binaries": "node scripts/build-binaries.mjs",
45
+ "build:binaries:matrix": "node scripts/build-binaries.mjs --all",
46
+ "smoke:binaries": "node scripts/binary-smoke.mjs"
47
+ },
48
+ "devDependencies": {
49
+ "@stricli/core": "1.3.0",
50
+ "@types/node": "24.13.3",
51
+ "@uru/api-client": "workspace:*",
52
+ "@uru/platform-operations": "workspace:*",
53
+ "@uru/release-contracts": "workspace:*",
54
+ "@uru/types": "workspace:*",
55
+ "bun-types": "1.3.13",
56
+ "typescript": "7.0.2"
57
+ },
58
+ "engines": {
59
+ "node": ">=24"
60
+ },
61
+ "packageManager": "bun@1.3.13",
62
+ "uru": {
63
+ "mcpPackage": "uru-mcp@3.7.2"
64
+ }
62
65
  }