@elizaos/interop 2.0.0-alpha.43 → 2.0.0-alpha.430

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/interop",
3
- "version": "2.0.0-alpha.43",
3
+ "version": "2.0.0-alpha.430",
4
4
  "description": "Cross-language plugin interoperability for elizaOS",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,24 +20,25 @@
20
20
  ],
21
21
  "scripts": {
22
22
  "build": "tsc",
23
- "test": "vitest run --pool=threads --passWithNoTests && bun run test:python",
23
+ "test": "bun run test:ts && bun run test:python",
24
+ "test:ts": "vitest run --pool=threads",
24
25
  "test:watch": "vitest --pool=threads",
25
- "test:python": "cd python && pytest tests/ -v -p no:anchorpy --asyncio-mode=auto || echo 'Python tests skipped'",
26
- "lint": "bunx @biomejs/biome check --write --unsafe .",
26
+ "test:python": "if [ -d python ]; then cd python && tmpdir=$(mktemp -d) && python3 -m venv \"$tmpdir\" && \"$tmpdir/bin/python\" -m pip install -e ../../python pytest pytest-asyncio -q && PYTHONPATH=. \"$tmpdir/bin/python\" -m pytest tests/ -v -p no:anchorpy --asyncio-mode=auto; status=$?; rm -rf \"$tmpdir\"; exit $status; else echo 'Python tests skipped - no python directory'; fi",
27
+ "lint": "bunx @biomejs/biome check --write .",
27
28
  "lint:check": "bunx @biomejs/biome check .",
28
29
  "typecheck": "tsc --noEmit"
29
30
  },
30
31
  "dependencies": {
31
- "@elizaos/core": "2.0.0-alpha.43"
32
+ "@elizaos/core": "2.0.0-alpha.430"
32
33
  },
33
34
  "devDependencies": {
34
35
  "@types/node": "^25.0.3",
35
- "typescript": "^5.9.3"
36
+ "typescript": "^6.0.0"
36
37
  },
37
38
  "author": "elizaOS",
38
39
  "license": "MIT",
39
40
  "publishConfig": {
40
41
  "access": "public"
41
42
  },
42
- "gitHead": "921845fc70406f93b8649731260e3254228cb21a"
43
+ "gitHead": "c3c6281e6b43f1bdf8b54fcec1a00986c5828cf8"
43
44
  }