@arthur-ai/buzz 2.1.554-dev.0

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.
@@ -0,0 +1,34 @@
1
+ import {
2
+ buzzPhrase,
3
+ buzzSay,
4
+ cancel,
5
+ confirm,
6
+ handleCancel,
7
+ isCancel,
8
+ logError,
9
+ logInfo,
10
+ logSuccess,
11
+ logWarn,
12
+ note,
13
+ p,
14
+ password,
15
+ select,
16
+ text
17
+ } from "./chunk-DNHKKPJY.js";
18
+ export {
19
+ buzzPhrase,
20
+ buzzSay,
21
+ cancel,
22
+ confirm,
23
+ handleCancel,
24
+ isCancel,
25
+ logError,
26
+ logInfo,
27
+ logSuccess,
28
+ logWarn,
29
+ note,
30
+ p,
31
+ password,
32
+ select,
33
+ text
34
+ };
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@arthur-ai/buzz",
3
+ "version": "2.1.554-dev.0",
4
+ "description": "Buzz — Arthur GenAI Engine onboarding agent",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "bin": {
11
+ "buzz": "./dist/index.js"
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "keywords": [
17
+ "arthur",
18
+ "genai",
19
+ "llm",
20
+ "monitoring",
21
+ "onboarding"
22
+ ],
23
+ "scripts": {
24
+ "dev": "tsx src/index.ts",
25
+ "build": "tsup src/index.ts --format esm --target node20",
26
+ "prepublishOnly": "npm run build",
27
+ "test": "vitest run",
28
+ "test:watch": "vitest"
29
+ },
30
+ "dependencies": {
31
+ "@ai-sdk/anthropic": "^3.0.0",
32
+ "@anthropic-ai/claude-agent-sdk": "latest",
33
+ "@clack/prompts": "^0.10.0",
34
+ "@mastra/core": "^1.24.1",
35
+ "boxen": "^8.0.1",
36
+ "chalk": "^5.3.0",
37
+ "dotenv": "^16.4.5",
38
+ "execa": "^9.3.0",
39
+ "figlet": "^1.8.0",
40
+ "ora": "^8.0.1",
41
+ "zod": "^4.0.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/figlet": "^1.5.8",
45
+ "@types/node": "^20.14.10",
46
+ "tsup": "^8.2.4",
47
+ "tsx": "^4.16.2",
48
+ "typescript": "^5.5.3",
49
+ "vitest": "^2.0.3"
50
+ },
51
+ "engines": {
52
+ "node": ">=20"
53
+ }
54
+ }