a24z 1.0.46 → 1.0.48
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/bin/a24z.js +26 -0
- package/dist/index.js +195 -141
- package/dist/index.js.map +4 -11
- package/package.json +11 -10
package/package.json
CHANGED
|
@@ -1,21 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "a24z",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.48",
|
|
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
|
+
},
|
|
6
9
|
"type": "module",
|
|
7
10
|
"files": [
|
|
11
|
+
"bin/",
|
|
8
12
|
"dist/",
|
|
9
13
|
"README.md"
|
|
10
14
|
],
|
|
11
|
-
"scripts": {
|
|
12
|
-
"build": "rm -rf dist && NODE_ENV=production bun run build.ts",
|
|
13
|
-
"build:dev": "rm -rf dist && NODE_ENV=development bun run build.ts",
|
|
14
|
-
"prepublishOnly": "bun run build",
|
|
15
|
-
"perf:test": "node scripts/perf-test.js",
|
|
16
|
-
"test": "bun test",
|
|
17
|
-
"test:watch": "bun test --watch"
|
|
18
|
-
},
|
|
19
15
|
"keywords": [
|
|
20
16
|
"claude",
|
|
21
17
|
"ai",
|
|
@@ -46,5 +42,10 @@
|
|
|
46
42
|
},
|
|
47
43
|
"engines": {
|
|
48
44
|
"node": ">=16.0.0"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "rm -rf dist && NODE_ENV=production bun run build.ts",
|
|
48
|
+
"build:dev": "rm -rf dist && NODE_ENV=development bun run build.ts",
|
|
49
|
+
"perf:test": "node scripts/perf-test.js"
|
|
49
50
|
}
|
|
50
|
-
}
|
|
51
|
+
}
|