-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.34 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@langwatch/better-agents",
"version": "0.1.23",
"description": "CLI for kicking off production-ready agent projects with LangWatch best practices",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"better-agents": "./dist/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsdown",
"dev": "tsx src/index.ts",
"prepublishOnly": "pnpm build",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"test": "vitest",
"test:unit": "vitest --config vitest.config.ts",
"test:e2e": "vitest --config vitest.e2e.config.ts",
"test:watch": "vitest --watch",
"test:ci": "vitest --run",
"prepare": "husky"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"keywords": [
"langwatch",
"agents",
"cli",
"ai",
"testing",
"llm",
"agent-framework",
"agno",
"mastra",
"prompt-management",
"scenario-testing",
"mcp",
"model-context-protocol",
"ai-testing",
"evaluation"
],
"author": "LangWatch",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/langwatch/better-agents.git"
},
"bugs": {
"url": "https://github.com/langwatch/better-agents/issues"
},
"homepage": "https://github.com/langwatch/better-agents#readme",
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.15.0",
"dependencies": {
"@inquirer/prompts": "^7.2.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.1",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"posthog-node": "^4.13.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/js": "^9.39.1",
"@types/node": "^22.10.2",
"eslint": "^9.39.1",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"lint-staged": "^16.2.6",
"tsdown": "^0.17.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.46.4",
"vitest": "^2.1.8"
}
}