-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.65 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.65 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
{
"name": "@agentmindsdev/node",
"version": "0.4.0",
"description": "AgentMinds Node.js SDK — cross-site collective intelligence for production AI agents. Auto-capture errors + push/pull patterns from the network pool.",
"keywords": [
"monitoring",
"errors",
"observability",
"logging",
"express",
"fastify",
"nextjs",
"agentminds",
"ai-agents",
"llm-observability",
"agent-monitoring",
"mcp",
"arp",
"cross-site-intelligence"
],
"license": "MIT",
"author": "AgentMinds",
"homepage": "https://agentminds.dev",
"repository": {
"type": "git",
"url": "https://github.com/agentmindsdev/node-sdk.git"
},
"bugs": {
"url": "https://github.com/agentmindsdev/node-sdk/issues"
},
"main": "src/index.js",
"bin": {
"agentminds-connect": "cli/index.js"
},
"exports": {
".": "./src/index.js",
"./integrations/express": "./src/integrations/express.js",
"./integrations/fastify": "./src/integrations/fastify.js",
"./integrations/nextjs": "./src/integrations/nextjs.js",
"./integrations/logger": "./src/integrations/logger.js"
},
"files": [
"src/",
"cli/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.17"
},
"scripts": {
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"jest": "^30.3.0"
},
"peerDependenciesMeta": {
"express": {
"optional": true
},
"fastify": {
"optional": true
},
"winston": {
"optional": true
},
"winston-transport": {
"optional": true
},
"pino": {
"optional": true
},
"next": {
"optional": true
}
}
}