-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 KB
/
package.json
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
{
"name": "@xeroapi/xero-mcp-server",
"version": "0.0.11",
"description": "MCP server implementation for Xero integration",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git://github.com/XeroAPI/xero-mcp-server.git"
},
"author": "Xero (https://xero.com)",
"type": "module",
"bin": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"lint:fix": "eslint --fix",
"lint": "eslint ."
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.0",
"dotenv": "^16.4.7",
"openid-client": "^6.3.4",
"xero-node": "^10.0.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/node": "^22.13.10",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"prettier": "3.5.3",
"shx": "^0.3.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.1"
}
}