-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 3.75 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 3.75 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "atproto-mcp",
"version": "0.2.1",
"packageManager": "pnpm@10.17.1",
"description": "A comprehensive MCP server for AT Protocol integration, enabling LLMs to interact directly with the AT Protocol ecosystem",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"atproto-mcp": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/make-executable.js",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:integration": "RUN_INTEGRATION_TESTS=true vitest run real-integration",
"test:integration:watch": "RUN_INTEGRATION_TESTS=true vitest real-integration",
"test:integration:ui": "RUN_INTEGRATION_TESTS=true vitest real-integration --ui",
"test:integration:auth": "dotenv -e .env.test -- vitest run real-integration",
"test:integration:auth:watch": "dotenv -e .env.test -- vitest real-integration",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"type-check": "tsc --noEmit",
"clean": "rimraf dist coverage .vitest",
"clean:all": "node scripts/clean-all.js",
"check": "npm run lint && npm run format:check && npm run type-check && npm run test",
"ci": "npm install && npm run check && npm run build",
"prepare": "husky",
"prepublishOnly": "npm run clean && npm run build && vitest run",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"help": "node scripts/help.js",
"status": "node scripts/status.js",
"deps:update": "npm update",
"deps:audit": "npm audit"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"atproto",
"at-protocol",
"bluesky",
"bluesky-api",
"social-networking",
"social-media",
"llm",
"llm-tools",
"ai",
"ai-assistant",
"claude",
"claude-desktop",
"anthropic",
"typescript",
"api-wrapper",
"sdk",
"real-time",
"streaming",
"firehose",
"decentralized",
"federated",
"social-protocol"
],
"author": "Cameron Rye <cameronrye@users.noreply.github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cameronrye/atproto-mcp.git"
},
"bugs": {
"url": "https://github.com/cameronrye/atproto-mcp/issues"
},
"homepage": "https://github.com/cameronrye/atproto-mcp#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@atproto/api": "^0.17.7",
"@modelcontextprotocol/sdk": "^1.22.0",
"@types/ws": "^8.18.1",
"ws": "^8.18.3",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"@vitest/coverage-v8": "^4.0.9",
"@vitest/ui": "^4.0.9",
"chalk": "^5.6.2",
"command-exists": "^1.2.9",
"dotenv": "^17.2.3",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"mermaid": "^11.12.0",
"prettier": "^3.1.1",
"rimraf": "^6.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.46.4",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^4.0.9"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}