-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.55 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.55 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
{
"name": "@handit.ai/cli",
"version": "1.4.48",
"description": "AI-Powered Agent Instrumentation & Monitoring CLI Tool",
"main": "src/index.js",
"bin": {
"handit-cli": "bin/handit-cli.js"
},
"scripts": {
"start": "node bin/handit-cli.js setup",
"dev": "node bin/handit-cli.js setup",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"lint": "eslint src/ bin/",
"format": "prettier --write src/ bin/",
"build": "echo 'No build step needed for Node.js CLI'",
"prepublishOnly": "npm run lint && npm run test"
},
"keywords": [
"cli",
"handit",
"agent",
"instrumentation",
"ai",
"ml",
"monitoring"
],
"author": "Handit Team",
"license": "MIT",
"dependencies": {
"@babel/parser": "^7.23.0",
"@babel/traverse": "^7.23.0",
"ast-types": "^0.14.0",
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"fs-extra": "^11.0.0",
"glob": "^10.0.0",
"ink": "^6.3.0",
"inquirer": "^8.2.4",
"open": "^9.1.0",
"openai": "^4.0.0",
"ora": "^5.4.1",
"react": "^19.1.1",
"simple-git": "^3.20.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Handit-AI/handit-cli.git"
},
"bugs": {
"url": "https://github.com/Handit-AI/handit-cli/issues"
},
"homepage": "https://github.com/Handit-AI/handit-cli#readme",
"publishConfig": {
"access": "public"
}
}