Skip to content

Commit 8068eb6

Browse files
committed
chore: update @mcpc/core to 0.3.2 and add agentic-js-sandbox
- Update @mcpc/core dependency from ~0.3.2-beta.1 to ~0.3.2 across packages/cli and packages/plugin-code-execution - Add new package packages/agentic-js-sandbox with deno.json configuration - Bump versions: @mcpc/core 0.3.2-beta.1 -> 0.3.2, @mcpc/cli 0.1.12-beta.1 -> 0.1.12, @mcpc/plugin-code-execution 0.0.1 -> 0.0.2
1 parent 6716d02 commit 8068eb6

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

deno.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "@mcpc/agentic-js-sandbox",
3+
"version": "0.1.0",
4+
"exports": {
5+
".": "./mod.ts",
6+
"./executor": "./src/sandbox-executor.ts"
7+
},
8+
"imports": {
9+
"@std/assert": "jsr:@std/assert@^1.0.0",
10+
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.8.0",
11+
"@mcpc/core": "jsr:@mcpc/core@^0.3.2",
12+
"deno": "npm:deno@^2.5.6"
13+
},
14+
"publish": {
15+
"exclude": ["examples/**", "tests/**", "logs/**"]
16+
},
17+
"tasks": {
18+
"dev": "deno run --allow-all examples/basic-usage.ts",
19+
"test": "deno test --allow-all tests/"
20+
}
21+
}

packages/cli/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpc/cli",
3-
"version": "0.1.12-beta.1",
3+
"version": "0.1.12",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mcpc-tech/mcpc.git"
@@ -12,7 +12,7 @@
1212
"./app": "./src/app.ts"
1313
},
1414
"imports": {
15-
"@mcpc/core": "jsr:@mcpc/core@^0.3.2-beta.1",
15+
"@mcpc/core": "jsr:@mcpc/core@^0.3.2",
1616
"@mcpc/utils": "jsr:@mcpc/utils@^0.2.2",
1717
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.8.0",
1818
"@mcpc-tech/ripgrep-napi": "npm:@mcpc-tech/ripgrep-napi@^0.0.4",

packages/core/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpc/core",
3-
"version": "0.3.2-beta.1",
3+
"version": "0.3.2",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mcpc-tech/mcpc.git"

packages/plugin-code-execution/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mcpc/plugin-code-execution",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mcpc-tech/mcpc.git"
@@ -13,7 +13,7 @@
1313
"imports": {
1414
"@std/assert": "jsr:@std/assert@^1.0.0",
1515
"@modelcontextprotocol/sdk": "npm:@modelcontextprotocol/sdk@^1.8.0",
16-
"@mcpc/core": "jsr:@mcpc/core@^0.3.2-beta.1",
16+
"@mcpc/core": "jsr:@mcpc/core@^0.3.2",
1717
"deno": "npm:deno@^2.5.6"
1818
},
1919
"publish": {

0 commit comments

Comments
 (0)