-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.7 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
{
"name": "mcp-devcontext",
"version": "1.0.0",
"description": "DevContext: MCP Extension with Roocode and Cursor integration",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"start": "ts-node examples/index.ts",
"test": "jest",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:e2e": "jest --selectProjects e2e",
"test:performance": "jest --selectProjects performance",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"keywords": [
"mcp",
"development",
"context",
"ai"
],
"author": "",
"license": "ISC",
"dependencies": {
"@roocode/api": "^1.0.0",
"@cursor/api": "^1.0.0",
"typescript": "^5.3.3",
"@types/node": "^20.11.24",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@testing-library/react": "^14.2.1",
"@testing-library/jest-dom": "^6.4.2",
"jest-environment-jsdom": "^29.7.0"
},
"peerDependencies": {
"vscode": "^1.87.0"
}
}