-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.57 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.57 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
{
"name": "mcp-use-monorepo",
"version": "1.0.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm run build:mcp-use && pnpm run build:other",
"build:mcp-use": "pnpm --filter mcp-use build",
"build:other": "pnpm --filter '{packages/*}' --filter '!mcp-use' build",
"test": "pnpm run -r test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:strict": "eslint . --max-warnings 0",
"dev": "pnpm run -r --parallel dev",
"changeset": "changeset",
"version": "changeset version && pnpm install --no-frozen-lockfile",
"release": "pnpm build && changeset publish",
"version:check": "changeset status"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.28.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"tsup": "^8.5.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.20.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"packageManager": "pnpm@10.6.1",
"pnpm": {
"patchedDependencies": {
},
"overrides": {
"mcp-use": "workspace:*",
"@mcp-use/inspector": "workspace:*",
"@mcp-use/cli": "workspace:*",
"create-mcp-use-app": "workspace:*",
"react": "^19.2.0",
"react-dom": "^19.2.0"
}
},
"dependencies": {
"@eslint/js": "^9.37.0"
}
}