a24z 1.0.19 → 1.0.21
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 +10 -75
- package/dist/index.js +150 -9
- package/dist/index.js.map +572 -1
- package/package.json +4 -4
- package/dist/file.js +0 -12
- package/dist/hook-handler/hook-handler.d.ts +0 -1
- package/dist/hook-handler/hook-handler.d.ts.map +0 -1
- package/dist/hook-handler/index.d.ts +0 -2
- package/dist/hook-handler/index.d.ts.map +0 -1
- package/dist/hook-handler/index.js +0 -16
- package/dist/hook-handler/package.json +0 -3
- package/dist/hook-handler.d.ts +0 -2
- package/dist/hook-handler.d.ts.map +0 -1
- package/dist/http-transport.d.ts +0 -8
- package/dist/http-transport.d.ts.map +0 -1
- package/dist/http-transport.js +0 -33
- package/dist/http-transport.js.map +0 -1
- package/dist/logger.d.ts +0 -19
- package/dist/logger.d.ts.map +0 -1
- package/dist/logger.js +0 -53
- package/dist/logger.js.map +0 -1
- package/dist/worker-pipeline.js +0 -38
- package/dist/worker.js +0 -54
- package/dist/worker1.js +0 -171
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a24z",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.21",
|
|
4
4
|
"description": "AI Agent Observability CLI - Monitor and analyze your AI tool performance",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"update-notifier": "^7.3.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
+
"@types/bun": "latest",
|
|
37
38
|
"@types/iarna__toml": "^2.0.5",
|
|
38
39
|
"@types/inquirer": "^9.0.7",
|
|
39
40
|
"@types/node": "^20.10.0",
|
|
40
41
|
"@types/update-notifier": "^6.0.8",
|
|
41
|
-
"@vercel/ncc": "^0.38.4",
|
|
42
42
|
"typescript": "^5.3.2",
|
|
43
43
|
"@repo/types": "1.0.0"
|
|
44
44
|
},
|
|
@@ -46,8 +46,8 @@
|
|
|
46
46
|
"node": ">=16.0.0"
|
|
47
47
|
},
|
|
48
48
|
"scripts": {
|
|
49
|
-
"build": "NODE_ENV=production
|
|
50
|
-
"build:dev": "NODE_ENV=development
|
|
49
|
+
"build": "NODE_ENV=production bun run build.ts",
|
|
50
|
+
"build:dev": "NODE_ENV=development bun run build.ts",
|
|
51
51
|
"perf:test": "node scripts/perf-test.js"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/dist/file.js
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
'use strict'
|
|
2
|
-
|
|
3
|
-
const pino = require('./pino')
|
|
4
|
-
const { once } = require('events')
|
|
5
|
-
|
|
6
|
-
module.exports = async function (opts = {}) {
|
|
7
|
-
const destOpts = Object.assign({}, opts, { dest: opts.destination || 1, sync: false })
|
|
8
|
-
delete destOpts.destination
|
|
9
|
-
const destination = pino.destination(destOpts)
|
|
10
|
-
await once(destination, 'ready')
|
|
11
|
-
return destination
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"","sourceRoot":"","sources":["file:///Users/brandonin/Projects/a24z-observability/apps/a24z-cli/src/hook-handler.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"","sourceRoot":"","sources":["file:///Users/brandonin/Projects/a24z-observability/apps/a24z-cli/src/index.ts"],"names":[],"mappings":""}
|