-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.6 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
{
"name": "@ai-support-agent/cli",
"version": "0.0.1",
"description": "AI Support Agent CLI client",
"main": "dist/index.js",
"bin": {
"ai-support-agent": "./dist/index.js"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mbc-net/ai-support-agent-cli.git"
},
"keywords": [
"ai",
"agent",
"cli",
"support",
"multi-tenant"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"docker",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "node --env-file-if-exists=.env --require ts-node/register src/index.ts",
"build": "tsc && cp -r src/locales dist/locales",
"prepublishOnly": "npm run build && npm test",
"test": "jest",
"test:cov": "jest --coverage",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:security": "jest --selectProjects unit --testPathPatterns security"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@sentry/node": "^10.40.0",
"axios": "^1.13.0",
"commander": "^14.0.0",
"mysql2": "^3.18.2",
"open": "^11.0.0",
"pg": "^8.19.0",
"ws": "^8.19.0"
},
"optionalDependencies": {
"node-pty": "^1.1.0",
"playwright": "^1.58.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/pg": "^8.18.0",
"@types/ws": "^8.18.1",
"jest": "^30.0.0",
"jest-junit": "^17.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.9.0"
}
}