-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.51 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.51 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
{
"name": "agentos-mcp-server",
"version": "1.0.1",
"description": "AgentOS MCP Server for Claude Desktop - Build, deploy, and manage policy-compliant autonomous agents",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"agentos-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"start:stdio": "node dist/cli.js --stdio",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"agent-os",
"claude-desktop",
"ai-agents",
"agent-safety",
"policy-enforcement",
"autonomous-agents",
"anthropic"
],
"author": "AgentOS Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imran-siddique/agent-os"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.23.0",
"uuid": "^9.0.0",
"yaml": "^2.4.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0",
"@vitest/coverage-v8": "^1.2.0",
"eslint": "^8.56.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0"
},
"files": [
"dist",
"src/templates"
],
"mcpName": "io.github.imran-siddique/agentos"
}