forked from marmelab/atomic-crm
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 928 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 928 Bytes
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
{
"name": "atomic-crm-server",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch --env-file=.env index.ts",
"start": "tsx index.ts",
"dev:mcp": "tsx watch mcp/contract-analyzer.ts",
"start:mcp": "tsx mcp/contract-analyzer.ts",
"postinstall": "rm -rf node_modules/@copilotkit/runtime/node_modules/@copilotkit/license-verifier node_modules/@copilotkit/shared/node_modules/@copilotkit/license-verifier 2>/dev/null; true"
},
"dependencies": {
"@ag-ui/mcp-apps-middleware": "latest",
"@copilotkit/license-verifier": "file:../packages/license-verifier",
"@copilotkit/runtime": "1.56.5",
"@hono/node-server": "^1",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"@modelcontextprotocol/sdk": "^1",
"hono": "^4",
"openai": "^4",
"papaparse": "^5.5.3",
"zod": "^4"
},
"devDependencies": {
"@types/papaparse": "^5.3.16",
"tsx": "^4"
}
}