-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.08 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.08 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
{
"name": "@ironbee-ai/cli",
"version": "0.11.4",
"description": "The CLI for IronBee — Verification and Intelligence Layer for Agentic Development",
"main": "dist/index.js",
"bin": {
"ironbee": "dist/index.js"
},
"files": [
"dist",
"scripts/run-postinstall.js",
"scripts/run-preuninstall.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc && node scripts/copy-assets.js",
"dev": "ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"clean": "rm -rf dist",
"release:patch": "release-it patch --ci -VV",
"release:minor": "release-it minor --ci -VV",
"release:major": "release-it major --ci -VV",
"postinstall": "node scripts/run-postinstall.js",
"preuninstall": "node scripts/run-preuninstall.js"
},
"keywords": [
"ai",
"ai-agent",
"verification",
"intelligence",
"browser-testing",
"claude",
"claude-code",
"cursor",
"cursor-ide",
"mcp",
"mcp-server",
"browser-devtools",
"coding-agent",
"agentic",
"devtools",
"e2e",
"qa",
"testing",
"automation"
],
"author": "IronBee",
"license": "Elastic-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ironbee-ai/ironbee-cli.git"
},
"homepage": "https://github.com/ironbee-ai/ironbee-cli#readme",
"bugs": {
"url": "https://github.com/ironbee-ai/ironbee-cli/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"commander": "^12.1.0",
"diff": "^9.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.4",
"@types/diff": "^7.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"jest": "^29.7.0",
"release-it": "^17.11.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}