@sandbank.dev/core 0.1.0 → 0.1.1

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 +12 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sandbank.dev/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Unified sandbox SDK for AI agents — provider abstraction, capability system, and error types",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -10,24 +10,21 @@
10
10
  "url": "https://github.com/chekusu/sandbank.git",
11
11
  "directory": "packages/core"
12
12
  },
13
- "keywords": [
14
- "sandbox",
15
- "ai-agent",
16
- "cloud",
17
- "provider",
18
- "sdk"
19
- ],
13
+ "keywords": ["sandbox", "ai-agent", "cloud", "provider", "sdk"],
20
14
  "exports": {
21
15
  ".": {
22
16
  "types": "./dist/index.d.ts",
23
17
  "import": "./dist/index.js"
24
18
  }
25
19
  },
26
- "files": [
27
- "dist"
28
- ],
20
+ "files": ["dist"],
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "typecheck": "tsc --noEmit",
24
+ "clean": "rm -rf dist"
25
+ },
29
26
  "peerDependencies": {
30
- "@sandbank.dev/relay": "0.1.0"
27
+ "@sandbank.dev/relay": "workspace:*"
31
28
  },
32
29
  "peerDependenciesMeta": {
33
30
  "@sandbank.dev/relay": {
@@ -35,15 +32,10 @@
35
32
  }
36
33
  },
37
34
  "devDependencies": {
35
+ "@sandbank.dev/relay": "workspace:*",
38
36
  "@types/node": "^22.15.0",
39
37
  "typescript": "^5.7.3",
40
38
  "ws": "^8.18.0",
41
- "@types/ws": "^8.18.0",
42
- "@sandbank.dev/relay": "0.1.0"
43
- },
44
- "scripts": {
45
- "build": "tsc",
46
- "typecheck": "tsc --noEmit",
47
- "clean": "rm -rf dist"
39
+ "@types/ws": "^8.18.0"
48
40
  }
49
- }
41
+ }