-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 803 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "rn-dev-agent-workspace",
"private": true,
"description": "Root manifest for changesets-driven version management. Contains no runtime code — actual packages live in scripts/cdp-bridge/ (the MCP server) and .claude-plugin/ (synthetic, mirrors the Claude Code plugin manifest version).",
"workspaces": [
"scripts/cdp-bridge",
".claude-plugin"
],
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version && node scripts/sync-plugin-manifest.mjs && bash scripts/sync-versions.sh --fix",
"release-cdp-bridge": "cd scripts/cdp-bridge && npm publish",
"test": "cd scripts/cdp-bridge && npm test"
},
"devDependencies": {
"@changesets/cli": "^2.27.10"
},
"overrides": {
"ip-address": ">=10.1.1",
"hono": ">=4.12.18"
}
}