-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5.46 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 5.46 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
{
"name": "helpmaton",
"version": "1.0.2",
"description": "",
"type": "module",
"main": "index.js",
"private": true,
"engines": {
"node": ">=24"
},
"repository": "https://github.com/djinilabs/helpmaton",
"author": "Djini Labs, Gordon & Teixeira Lda.",
"license": "SEE LICENSE IN LICENSE.md",
"licenses": [
{
"type": "Business Source License 1.1",
"url": "https://github.com/djinilabs/helpmaton/blob/main/LICENSE.md"
}
],
"homepage": "https://helpmaton.com",
"bugs": "https://github.com/djinilabs/helpmaton/issues",
"keywords": [
"helpmaton",
"ai-agents",
"ai-management",
"knowledge-base",
"webhook-api",
"ai-platform",
"agents",
"mcp",
"agent memory"
],
"copyright": "© 2025-present, Gordon & Teixeira Lda. (https://helpmaton.com)",
"scripts": {
"dev": "node scripts/dev-wrapper.mjs",
"dev:backend": "pnpm dev:backend:sandbox",
"dev:watch-source-refresh-lambda": "node scripts/watchSourceRefreshLambda.cjs",
"dev:backend:sandbox": "node scripts/sandbox-wrapper.mjs",
"dev:frontend": "cd apps/frontend && pnpm dev",
"dev:dbadmin": "dynamodb-admin --dynamo-endpoint=http://localhost:6000",
"build:frontend": "pnpm generate:openapi && pnpm build:ui && pnpm build:widget",
"build:ui": "cd apps/frontend && pnpm build",
"build:widget": "cd apps/widget && pnpm build",
"build:backend": "pnpm generate:internal-docs && pnpm exec tsx scripts/build-backend.ts",
"generate:internal-docs": "node scripts/generate-internal-docs.mjs",
"typecheck": "tsc --noEmit",
"lint": "pnpm eslint",
"complexity:report": "node scripts/complexity-report.mjs",
"test": "cd apps/backend && pnpm test",
"test:e2e": "NODE_ENV=test E2E_NO_UI=true playwright test",
"test:e2e:ui": "NODE_ENV=test playwright test --ui",
"test:e2e:headed": "NODE_ENV=test playwright test --headed",
"test:e2e:debug": "NODE_ENV=test playwright test --debug",
"test:e2e:mcp-oauth": "RUN_MCP_OAUTH_E2E=true HEADLESS=false NODE_ENV=test E2E_NO_UI=true playwright test --headed tests/e2e/mcp-oauth/mcp-oauth-integration.spec.ts",
"test:mcp-tools:integration": "node scripts/run-mcp-tools-integration.mjs",
"test:e2e:install": "NODE_ENV=test playwright install --with-deps chromium",
"update-pricing": "node scripts/update-pricing.mjs",
"test-aggregation": "cd apps/backend && pnpm exec tsx ../../scripts/test-aggregation.ts",
"verify-aggregates": "cd apps/backend && pnpm exec tsx ../../scripts/verify-aggregates.ts",
"add-credits": "cd apps/backend && pnpm exec tsx ../../scripts/add-credits.ts",
"add-credits-pr": "pnpm exec tsx scripts/add-credits-pr.ts",
"set-credits-pr": "pnpm exec tsx scripts/set-credits-pr.ts",
"seed-local-transactions": "cd apps/backend && pnpm exec tsx ../../scripts/seed-local-transactions.ts",
"run-all-memory-summaries": "cd apps/backend && ARC_ENV=testing pnpm exec tsx ../../scripts/run-all-memory-summaries.mjs",
"discord:register-commands": "pnpm exec tsx scripts/register-discord-commands.ts",
"generate:openapi": "pnpm exec tsx scripts/generate-openapi.ts",
"test:openrouter-rerank": "pnpm exec tsx scripts/test-openrouter-rerank-via-chat.ts",
"cleanup-ecr": "node scripts/cleanup-ecr-images.mjs",
"export:svg-to-png": "node scripts/export-svg-to-png.mjs",
"cleanup-ecr:dry-run": "node scripts/cleanup-ecr-images.mjs --dry-run",
"cleanup-ecr:execute": "node scripts/cleanup-ecr-images.mjs --execute",
"clean:local": "rm -rf apps/backend/dist apps/backend/public apps/frontend/dist .pnpm-store node_modules && pnpm install",
"postinstall": "node scripts/patch-sandbox-bootstrap.mjs"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"patchedDependencies": {
"@architect/functions": "patches/@architect__functions.patch",
"@auth/core": "patches/@auth__core.patch",
"@auth/express": "patches/@auth__express.patch",
"@architect/sandbox": "patches/@architect__sandbox.patch"
},
"onlyBuiltDependencies": [
"leveldown",
"aws-sdk",
"esbuild",
"sharp",
"@sentry/cli"
],
"overrides": {
"@types/node": "24.10.10",
"esbuild": "^0.27.2",
"vite": "^7.2.2",
"next": "^16.0.7"
}
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.971.0",
"@aws-sdk/client-cloudwatch-logs": "^3.971.0",
"@aws-sdk/client-dynamodb": "^3.971.0",
"@aws-sdk/client-ecr": "^3.971.0",
"@aws-sdk/client-lambda": "^3.971.0",
"@aws-sdk/client-sqs": "^3.971.0",
"@aws-sdk/lib-dynamodb": "^3.971.0",
"@eslint/js": "^9.39.1",
"@octokit/rest": "^22.0.1",
"@playwright/test": "^1.48.0",
"@sentry/cli": "^3.1.0",
"@types/express": "^5.0.5",
"@types/swagger-jsdoc": "^6.0.1",
"chokidar": "^5.0.0",
"dotenv": "^17.2.1",
"dynamodb-admin": "^5.1.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-tailwindcss": "^3.18.2",
"glob": "^13.0.0",
"globals": "^17.0.0",
"gray-matter": "^4.0.3",
"jose": "^6.1.3",
"nanoid": "^5.0.9",
"sharp": "^0.34.5",
"node-gyp": "^12.1.0",
"npm-run-all2": "^8.0.4",
"swagger-jsdoc": "^6.2.8",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"@architect/asap": "^7.0.10",
"@posthog/ai": "^7.2.1"
}
}