-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 4.66 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 4.66 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "@hybridaione/hybridclaw",
"version": "0.12.6",
"type": "module",
"description": "Enterprise-ready self-hosted AI assistant runtime with sandboxed execution, secure credentials, approvals, and memory",
"repository": {
"type": "git",
"url": "https://github.com/HybridAIOne/hybridclaw"
},
"homepage": "https://github.com/HybridAIOne/hybridclaw",
"bugs": {
"url": "https://github.com/HybridAIOne/hybridclaw/issues"
},
"workspaces": [
"console",
"container"
],
"engines": {
"node": "22.x"
},
"publishConfig": {
"access": "public"
},
"bin": {
"hybridclaw": "dist/cli.js"
},
"files": [
"dist/",
"scripts/postinstall-container.mjs",
"console/dist/",
"console/package.json",
"container/dist/",
"skills/",
"community-skills/",
"presets/",
"templates/",
"docs/",
"container/Dockerfile",
"container/.dockerignore",
"container/package.json",
"container/package-lock.json",
"container/tsconfig.json",
"container/shared/",
"container/src/",
"plugin-sdk.js",
"plugin-sdk.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE",
"AGENTS.md",
"SECURITY.md",
"TRUST_MODEL.md",
"config.example.json"
],
"scripts": {
"clean": "node -e \"const fs=require('node:fs');fs.rmSync('dist',{recursive:true,force:true});fs.rmSync('console/dist',{recursive:true,force:true});fs.rmSync('container/dist',{recursive:true,force:true});\"",
"build:console": "npm --workspace console run build",
"build": "npm --prefix container run build && tsc && node -e \"require('node:fs').chmodSync('dist/cli.js', 0o755)\"",
"typecheck": "tsc --noEmit && npm --workspace console run typecheck",
"lint": "tsc --noEmit --noUnusedLocals --noUnusedParameters && npm --workspace console run typecheck",
"check": "biome check src",
"format": "biome check --write src",
"test": "npm run test:unit",
"test:unit": "vitest run --configLoader runner --config vitest.unit.config.ts && npm --workspace console run test",
"test:watch": "vitest --configLoader runner --config vitest.unit.config.ts",
"test:integration": "vitest run --configLoader runner --config vitest.integration.config.ts --passWithNoTests",
"test:e2e": "vitest run --configLoader runner --config vitest.e2e.config.ts --passWithNoTests",
"test:console": "npm --workspace console run test",
"test:live": "vitest run --configLoader runner --config vitest.live.config.ts --passWithNoTests",
"setup": "npm --prefix container install",
"dev": "tsx src/cli.ts gateway",
"gateway": "tsx src/cli.ts gateway",
"tui": "tsx src/cli.ts tui",
"start": "node dist/cli.js gateway",
"postinstall": "node ./scripts/postinstall-container.mjs",
"build:container": "node ./scripts/build-container.mjs",
"prebuild": "npm run build:console",
"prepack": "npm run clean && npm run build && npm run release:check",
"release:check": "node ./scripts/release-check.mjs",
"publish:dry": "npm publish --access public --dry-run",
"prepare": "command -v git >/dev/null 2>&1 && test -w .git/config && husky || true"
},
"dependencies": {
"@opentelemetry/api": "1.9.1",
"@opentelemetry/exporter-trace-otlp-grpc": "0.214.0",
"@opentelemetry/exporter-trace-otlp-http": "0.214.0",
"@opentelemetry/resources": "2.6.1",
"@opentelemetry/sdk-node": "0.214.0",
"@opentelemetry/semantic-conventions": "1.40.0",
"@slack/bolt": "4.7.0",
"@huggingface/transformers": "3.8.1",
"@whiskeysockets/baileys": "7.0.0-rc.9",
"ajv": "8.18.0",
"better-sqlite3": "12.8.0",
"botbuilder": "4.23.3",
"cron-parser": "5.5.0",
"csv-parse": "6.2.0",
"discord.js": "14.25.1",
"docx": "9.6.1",
"iconv-lite": "0.7.2",
"imapflow": "1.2.18",
"mailparser": "3.9.6",
"marked": "17.0.4",
"node-pty": "1.1.0",
"nodemailer": "8.0.4",
"pdf-lib": "1.17.1",
"pdfjs-dist": "5.5.207",
"pino": "9.14.0",
"pino-pretty": "13.1.3",
"pptxgenjs": "4.0.1",
"qrcode-terminal": "0.12.0",
"sanitize-html": "2.17.1",
"stemmer": "2.0.1",
"ws": "8.20.0",
"xlsx-populate": "1.21.0",
"yaml": "2.8.3",
"yauzl": "3.2.1",
"yazl": "3.3.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.7",
"@types/better-sqlite3": "7.6.13",
"@types/mailparser": "3.4.6",
"@types/node": "22.19.15",
"@types/nodemailer": "7.0.11",
"@types/sanitize-html": "2.16.1",
"@types/yauzl": "2.10.3",
"@types/yazl": "3.3.0",
"@vitest/coverage-v8": "4.0.18",
"html-to-text": "9.0.5",
"husky": "9.1.7",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"overrides": {
"undici": "6.24.1"
}
}