@crosshands/platform-darwin 0.1.2

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 ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@crosshands/platform-darwin",
3
+ "version": "0.1.2",
4
+ "description": "macOS computer-use provider for CrossHands",
5
+ "license": "MIT",
6
+ "files": [
7
+ "dist",
8
+ "src",
9
+ "assets",
10
+ "NOTICE"
11
+ ],
12
+ "os": [
13
+ "darwin"
14
+ ],
15
+ "cpu": [
16
+ "arm64",
17
+ "x64"
18
+ ],
19
+ "type": "module",
20
+ "exports": {
21
+ ".": {
22
+ "types": "./src/index.ts",
23
+ "development": "./src/index.ts",
24
+ "default": "./dist/index.js"
25
+ }
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "dependencies": {
31
+ "@crosshands/contract": "0.1.2"
32
+ },
33
+ "devDependencies": {
34
+ "@types/node": "24.10.1",
35
+ "typescript": "5.9.3",
36
+ "vitest": "4.1.5"
37
+ },
38
+ "engines": {
39
+ "node": ">=22"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc -p tsconfig.json",
43
+ "typecheck": "tsc -p tsconfig.json --noEmit",
44
+ "test": "vitest run test"
45
+ }
46
+ }