@oriro/cli 1.0.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.
Files changed (2) hide show
  1. package/dist/index.js +4889 -0
  2. package/package.json +19 -0
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@oriro/cli",
3
+ "version": "1.0.0",
4
+ "type": "module",
5
+ "license": "MIT",
6
+ "description": "ORIRO — free on-device AI coding terminal. Two expert models, 128K context, zero auth.",
7
+ "bin": {
8
+ "oriro": "dist/index.js"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "engines": {
12
+ "node": ">=18.0.0"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "//": "Published artifact is the esbuild single-file bundle (dist/index.js) — all @oriro/* workspace packages + chalk + commander are inlined, so this package has NO runtime dependencies. Source cross-package imports resolve via the esbuild alias in scripts/bundle.mjs.",
18
+ "dependencies": {}
19
+ }