a24z 1.0.45 → 1.0.46
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/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/package.json +1 -5
- package/bin/a24z.js +0 -26
package/package.json
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a24z",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.46",
|
|
4
4
|
"description": "AI Agent Observability CLI - Monitor and analyze your AI tool performance",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"a24z": "bin/a24z.js"
|
|
8
|
-
},
|
|
9
6
|
"type": "module",
|
|
10
7
|
"files": [
|
|
11
|
-
"bin/",
|
|
12
8
|
"dist/",
|
|
13
9
|
"README.md"
|
|
14
10
|
],
|
package/bin/a24z.js
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
|
|
3
|
-
// This is the NPM bin entry point that loads the compiled TypeScript
|
|
4
|
-
import { createRequire } from 'module';
|
|
5
|
-
import { fileURLToPath } from 'url';
|
|
6
|
-
import { resolve, dirname } from 'path';
|
|
7
|
-
|
|
8
|
-
const require = createRequire(import.meta.url);
|
|
9
|
-
const fs = require('fs');
|
|
10
|
-
const __filename = fileURLToPath(import.meta.url);
|
|
11
|
-
const __dirname = dirname(__filename);
|
|
12
|
-
|
|
13
|
-
const bundlePath = resolve(__dirname, '../dist/index.js');
|
|
14
|
-
|
|
15
|
-
// Verify bundle exists
|
|
16
|
-
if (!fs.existsSync(bundlePath)) {
|
|
17
|
-
console.error('❌ Error: A24Z CLI was built with Bun but the bundle is missing.');
|
|
18
|
-
console.error('Please run: bun run build');
|
|
19
|
-
process.exit(1);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
// Load the bundle
|
|
23
|
-
import(bundlePath).catch(error => {
|
|
24
|
-
console.error('❌ Error: Failed to load A24Z CLI (bundle):', error);
|
|
25
|
-
console.error('');
|
|
26
|
-
});
|