-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.13 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": "agent-webmcp",
"version": "1.0.0",
"description": "Chrome extension: LangGraph.js agent + MCP + WebMCP + Tab Tools",
"private": true,
"scripts": {
"dev": "webpack --mode development --watch",
"build": "webpack --mode production",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test:prepare": "node scripts/build-test-fixtures.mjs",
"test": "npm run test:prepare && node --test tests/*.test.js",
"verify": "npm run typecheck && npm test && npm run build"
},
"devDependencies": {
"@types/chrome": "^0.0.268",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.77.0",
"sass-loader": "^14.2.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@langchain/core": "^0.3.0",
"@langchain/langgraph": "^0.2.0",
"@langchain/openai": "^0.3.0",
"@modelcontextprotocol/ext-apps": "^1.6.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"marked": "^18.0.3"
}
}