-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.18 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
{
"name": "@bugzy-ai/bugzy",
"version": "1.20.0",
"description": "Open-source AI agent configuration for QA automation with Claude Code",
"publishConfig": {
"access": "public"
},
"keywords": [
"ai",
"testing",
"qa",
"automation",
"claude",
"mcp",
"agent",
"test-automation",
"claude-code"
],
"homepage": "https://github.com/bugzy-ai/bugzy#readme",
"bugs": {
"url": "https://github.com/bugzy-ai/bugzy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugzy-ai/bugzy.git"
},
"license": "MIT",
"author": "Bugzy Team",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./tasks": {
"types": "./dist/tasks/index.d.ts",
"import": "./dist/tasks/index.js"
},
"./subagents": {
"types": "./dist/subagents/index.d.ts",
"import": "./dist/subagents/index.js"
},
"./subagents/metadata": {
"types": "./dist/subagents/metadata.d.ts",
"import": "./dist/subagents/metadata.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"bugzy": "./dist/cli/index.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:ci": "vitest run",
"type-check": "tsc --noEmit",
"lint": "eslint src",
"prepublishOnly": "pnpm run build && pnpm run test:ci"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"figlet": "^1.9.3",
"gradient-string": "^3.0.0",
"gray-matter": "^4.0.3",
"inquirer": "^9.2.12",
"ora": "^7.0.1"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}