-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "cline-mcp-server",
"version": "0.1.0",
"description": "A Model Context Protocol server",
"private": true,
"type": "module",
"bin": {
"cline-mcp-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.js --coverage",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:ci": "NODE_OPTIONS=--experimental-vm-modules jest --ci --runInBand --coverage"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.18.0",
"ajv": "^8.17.1",
"dotenv": "^16.4.5",
"jira.js": "^3.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.30",
"jest": "^29.7.0",
"ts-jest": "^29.3.1",
"typescript": "^5.3.3"
}
}