mozart-router 0.1.0 → 0.1.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.
Files changed (2) hide show
  1. package/dist/cli/main.js +1 -0
  2. package/package.json +3 -3
package/dist/cli/main.js CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ #!/usr/bin/env node
2
3
  "use strict";
3
4
  Object.defineProperty(exports, "__esModule", { value: true });
4
5
  const mozart_1 = require("../core/mozart");
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "mozart-router",
3
- "version": "0.1.0",
4
- "description": "Local orchestration and routing layer for AI agents — gateway-first, agent-first, integration-first.",
3
+ "version": "0.1.1",
4
+ "description": "Mozart: local conductor for AI agents — gateway-first orchestration and routing layer.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {
8
8
  "mozart-router": "./dist/cli/main.js"
9
9
  },
10
10
  "scripts": {
11
- "build": "tsc",
11
+ "build": "tsc && node -e \"const fs=require('fs');const f='dist/cli/main.js';fs.writeFileSync(f,'#!/usr/bin/env node\\n'+fs.readFileSync(f,'utf8'))\"",
12
12
  "test": "vitest run",
13
13
  "test:watch": "vitest",
14
14
  "lint": "tsc --noEmit",