-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 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
{
"name": "openrouter-mcp-server",
"version": "1.2.2",
"description": "MCP server providing access to OpenRouter's unified API for 500+ AI models",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"openrouter-mcp-server": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:foundation": "vitest run tests/foundation/",
"test:api": "vitest run tests/api/",
"test:session": "vitest run tests/session/",
"test:listModels": "vitest run tests/tools/listModels.test.ts",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"openrouter",
"ai",
"llm",
"claude",
"gpt",
"anthropic",
"openai"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.1.0",
"typescript": "^5.3.2",
"vitest": "^1.0.0"
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/overtimepog/OpenrouterMCP"
}
}