-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.19 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
{
"name": "@kimsungwhee/apple-docs-mcp",
"version": "1.0.26",
"description": "MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants",
"type": "module",
"main": "dist/index.js",
"bin": {
"apple-docs-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"README.*.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/kimsungwhee/apple-docs-mcp.git"
},
"bugs": {
"url": "https://github.com/kimsungwhee/apple-docs-mcp/issues"
},
"homepage": "https://github.com/kimsungwhee/apple-docs-mcp#readme",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc && cp -r data dist/",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"prepublishOnly": "pnpm run clean && pnpm run build && pnpm run test:ci",
"release:patch": "npm version patch && git push origin main --tags && npm publish",
"release:minor": "npm version minor && git push origin main --tags && npm publish",
"release:major": "npm version major && git push origin main --tags && npm publish"
},
"keywords": [
"mcp",
"apple",
"developer-documentation",
"ios",
"macos",
"swift",
"objective-c",
"api-search",
"framework-documentation",
"sample-code",
"apple-apis"
],
"author": "kimsungwhee",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.15.1",
"cheerio": "^1.1.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@jest/globals": "^30.0.4",
"@types/jest": "^30.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^30.0.4",
"jsdom": "^26.1.0",
"ts-jest": "^29.4.0",
"tsx": "^4.20.3",
"typescript": "^5.3.3"
}
}