@elizaos/computeruse 0.24.22 → 2.0.0-alpha.26

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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/index.d.ts +1653 -0
  3. package/package.json +17 -15
package/package.json CHANGED
@@ -53,28 +53,30 @@
53
53
  }
54
54
  },
55
55
  "optionalDependencies": {
56
- "@elizaos/computeruse-win32-arm64-msvc": "0.24.22",
57
- "@elizaos/computeruse-win32-x64-msvc": "0.24.22",
58
- "@elizaos/computeruse-darwin-arm64": "0.24.22",
59
- "@elizaos/computeruse-darwin-x64": "0.24.22",
60
- "@elizaos/computeruse-linux-x64-gnu": "0.24.22",
61
- "@elizaos/computeruse-linux-arm64-gnu": "0.24.22"
56
+ "@elizaos/computeruse-win32-x64-msvc": "2.0.0-alpha.26",
57
+ "@elizaos/computeruse-darwin-x64": "2.0.0-alpha.26",
58
+ "@elizaos/computeruse-linux-x64-gnu": "2.0.0-alpha.26",
59
+ "@elizaos/computeruse-win32-arm64-msvc": "2.0.0-alpha.26",
60
+ "@elizaos/computeruse-darwin-arm64": "2.0.0-alpha.26",
61
+ "@elizaos/computeruse-linux-arm64-gnu": "2.0.0-alpha.26"
62
62
  },
63
63
  "repository": {
64
64
  "type": "git",
65
65
  "url": "https://github.com/elizaos/eliza"
66
66
  },
67
67
  "scripts": {
68
- "artifacts": "npx napi artifacts",
69
- "build": "npm run sync-version && npm run build:wrapper && npx napi build --platform --release --strip",
70
- "build:debug": "npm run sync-version && npm run build:wrapper && npx napi build --platform",
71
- "build:wrapper": "npx esbuild wrapper.ts --outfile=wrapper.js --platform=node --format=cjs --target=es2020",
72
- "prepublish:ci": "npm run sync-version && npm run build:wrapper",
73
- "prepublishOnly": "npm run sync-version && npm run build:wrapper && npx napi prepublish -t npm",
68
+ "artifacts": "napi artifacts",
69
+ "build": "npm run build:wrapper && napi build --platform --release --strip",
70
+ "build:debug": "npm run build:wrapper && napi build --platform",
71
+ "build:wrapper": "esbuild wrapper.ts --outfile=wrapper.js --platform=node --format=cjs --target=es2020",
72
+ "prepublish:ci": "npm run build:wrapper",
73
+ "prepublishOnly": "npm run build:wrapper && napi prepublish -t npm",
74
74
  "sync-version": "node scripts/sync-version.js",
75
- "test": "node tests/element-chaining.test.js",
75
+ "test": "node tests/element-chaining.test.js && node tests/element-range.test.js && node tests/element-scroll-into-view.test.js && node tests/element-value.test.js && node tests/execute-browser-script-wrapper.test.js && node tests/comprehensive-ui-elements.test.js",
76
+ "test:desktop": "node --test tests/*.test.js",
76
77
  "test-hook": "powershell.exe -ExecutionPolicy Bypass -File \"../../.git/hooks/pre-push.ps1\""
77
78
  },
78
79
  "types": "wrapper.d.ts",
79
- "version": "0.24.22"
80
- }
80
+ "version": "2.0.0-alpha.26",
81
+ "gitHead": "91dceb1d2e9762af27353dbc764e40e1a0599508"
82
+ }