@koi-language/koi 1.0.0 → 1.0.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@koi-language/koi",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Koi - Agent-first language. Calm orchestration.",
5
5
  "type": "module",
6
6
  "main": "src/runtime/index.js",
package/src/cli/koi.js CHANGED
@@ -531,7 +531,7 @@ run Orchestrator.start({})
531
531
  author: '',
532
532
  license: 'MIT',
533
533
  dependencies: {
534
- 'koi-lang': '^1.0.0'
534
+ '@koi-language/koi': '^1.0.0'
535
535
  }
536
536
  };
537
537
 
@@ -109,8 +109,8 @@ export class KoiTranspiler {
109
109
  code += this.emit(`// Using local runtime from KOI_RUNTIME_PATH: ${koiRuntimePath}\n`);
110
110
  } else {
111
111
  // Production mode: use package imports
112
- runtimeImportPath = 'koi-lang';
113
- routerImportPath = 'koi-lang/router';
112
+ runtimeImportPath = '@koi-language/koi';
113
+ routerImportPath = '@koi-language/koi/router';
114
114
  }
115
115
 
116
116
  // Store routerImportPath for later use