a24z 1.0.18 → 1.0.20
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 +30 -38
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -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.20",
|
|
4
4
|
"description": "AI Agent Observability CLI - Monitor and analyze your AI tool performance",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
"author": "a24z",
|
|
26
26
|
"homepage": "https://a24z.ai",
|
|
27
27
|
"dependencies": {
|
|
28
|
+
"@iarna/toml": "^2.2.5",
|
|
28
29
|
"chalk": "^5.3.0",
|
|
29
30
|
"commander": "^11.1.0",
|
|
30
31
|
"inquirer": "^9.2.12",
|
|
@@ -33,6 +34,7 @@
|
|
|
33
34
|
"update-notifier": "^7.3.1"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
37
|
+
"@types/iarna__toml": "^2.0.5",
|
|
36
38
|
"@types/inquirer": "^9.0.7",
|
|
37
39
|
"@types/node": "^20.10.0",
|
|
38
40
|
"@types/update-notifier": "^6.0.8",
|
|
@@ -44,9 +46,8 @@
|
|
|
44
46
|
"node": ">=16.0.0"
|
|
45
47
|
},
|
|
46
48
|
"scripts": {
|
|
47
|
-
"build": "ncc build src/index.ts -o dist --minify --source-map",
|
|
48
|
-
"build:dev": "
|
|
49
|
-
"build:all": "npm run build:dev && npm run build",
|
|
49
|
+
"build": "NODE_ENV=production ncc build src/index.ts -o dist --minify --source-map",
|
|
50
|
+
"build:dev": "NODE_ENV=development ncc build src/index.ts -o dist --minify --source-map",
|
|
50
51
|
"perf:test": "node scripts/perf-test.js"
|
|
51
52
|
}
|
|
52
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":""}
|