-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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": "confluence-cloud",
"version": "0.1.0",
"description": "A Model Context Protocol Server for Atlassian Confluence Cloud",
"private": true,
"type": "module",
"bin": {
"confluence-cloud": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc",
"postbuild": "node --eval \"import('fs').then(fs => fs.chmodSync('build/index.js', '755'))\"",
"prepare": "npm run build",
"test": "jest",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@atlaskit/adf-schema": "^46.1.0",
"@atlaskit/adf-utils": "^19.14.1",
"@atlaskit/editor-json-transformer": "^8.21.1",
"@modelcontextprotocol/sdk": "^1.6.0",
"axios": "^1.7.9",
"dotenv": "^16.4.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}