-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.1 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
{
"name": "react-profiler-mcp",
"private": false,
"workspaces": [
"packages/*",
"apps/*"
],
"bin": {
"react-profiler-mcp": "./packages/mcp-server/bin/react-profiler-mcp.js"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"lint": "eslint packages/mcp-server/src packages/react-collector/src --ext .ts,.tsx --max-warnings 0",
"typecheck": "tsc --build && npm run typecheck -w @react-profiler-mcp/react-collector -w @react-profiler-mcp/demo",
"changeset": "changeset",
"pack:dry": "npm pack -w @react-profiler-mcp/mcp-server --dry-run && npm pack -w @react-profiler-mcp/react-collector --dry-run"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
}
}