@uru-intelligence/cli 0.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.
- package/README.md +113 -0
- package/dist/uru.mjs +1605 -0
- package/package.json +44 -0
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uru-intelligence/cli",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Uru full-platform command line interface",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"uru": "dist/uru.mjs"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": "./dist/uru.mjs"
|
|
12
|
+
},
|
|
13
|
+
"scripts": {
|
|
14
|
+
"lint": "oxlint . --type-aware",
|
|
15
|
+
"lint:fix": "oxlint . --type-aware --fix",
|
|
16
|
+
"type-check": "tsc --noEmit",
|
|
17
|
+
"test": "bun test",
|
|
18
|
+
"test:unit": "bun test",
|
|
19
|
+
"format": "prettier --write . --ignore-path ../../.prettierignore",
|
|
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",
|
|
22
|
+
"build": "node scripts/build.mjs",
|
|
23
|
+
"prepack": "bun run build",
|
|
24
|
+
"docs:generate": "bun scripts/generate-docs.mjs",
|
|
25
|
+
"smoke:staging": "node scripts/staging-smoke.mjs"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@uru/platform-operations": "workspace:*",
|
|
29
|
+
"@types/node": "24.13.2",
|
|
30
|
+
"bun-types": "1.3.13",
|
|
31
|
+
"typescript": "7.0.1-rc"
|
|
32
|
+
},
|
|
33
|
+
"packageManager": "bun@1.3.13",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": "24.13.0"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md"
|
|
40
|
+
],
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
}
|
|
44
|
+
}
|