@orchestra-mcp/devtools 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +18 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orchestra-mcp/devtools",
3
- "version": "0.2.0",
4
- "description": "Developer tools components for Orchestra MCP terminal, debugger",
3
+ "version": "1.0.0",
4
+ "description": "Developer tools components for Orchestra MCP \u2014 terminal, debugger",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -13,8 +13,12 @@
13
13
  "require": "./dist/index.js"
14
14
  }
15
15
  },
16
- "files": ["dist"],
17
- "publishConfig": { "access": "public" },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public"
21
+ },
18
22
  "repository": {
19
23
  "type": "git",
20
24
  "url": "https://github.com/orchestra-mcp/devtools"
@@ -22,7 +26,9 @@
22
26
  "funding": "https://github.com/sponsors/fadymondy",
23
27
  "license": "MIT",
24
28
  "dependencies": {
25
- "@orchestra-mcp/editor": "^0.2.0", "@orchestra-mcp/icons": "^0.2.0", "@orchestra-mcp/ui": "^0.2.0",
29
+ "@orchestra-mcp/editor": "^1.0.0",
30
+ "@orchestra-mcp/icons": "^1.0.0",
31
+ "@orchestra-mcp/ui": "^1.0.0",
26
32
  "@xterm/xterm": "^5.5.0",
27
33
  "@xterm/addon-fit": "^0.10.0"
28
34
  },
@@ -41,5 +47,11 @@
41
47
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
42
48
  "prepublishOnly": "pnpm build"
43
49
  },
44
- "keywords": ["orchestra", "mcp", "react", "components", "devtools"]
50
+ "keywords": [
51
+ "orchestra",
52
+ "mcp",
53
+ "react",
54
+ "components",
55
+ "devtools"
56
+ ]
45
57
  }