-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.28 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.28 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
{
"name": "@augmnt-sh/augments-mcp-server",
"version": "7.1.0",
"description": "Augments MCP Server - Framework Documentation Provider for AI Assistants",
"type": "module",
"bin": {
"augments-mcp-server": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/cli.js",
"lint": "tsc --noEmit",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "AUGMENTS_E2E=1 vitest run",
"test:coverage": "vitest run --coverage",
"postbuild": "chmod +x dist/cli.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"typescript": "^5.4.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^8.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/augmentscode/augments-mcp-server"
},
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"ai",
"framework-documentation",
"developer-tools"
],
"author": "Augments",
"license": "MIT",
"publishConfig": {
"access": "public"
}
}