@sipher.dev/agents 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.
package/package.json CHANGED
@@ -1,47 +1,56 @@
1
1
  {
2
2
  "name": "@sipher.dev/agents",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "private": false,
5
5
  "description": "SIPHER Agents CLI and machine connector.",
6
6
  "bin": {
7
- "agent-connector": "dist/index.js",
8
7
  "agents": "dist/index.js"
9
8
  },
10
9
  "files": [
11
- "dist"
10
+ "dist",
11
+ "!dist/connector-runtime.js",
12
+ "!dist/connector-runtime.d.ts",
13
+ "connector-runtime.json",
14
+ "connector-platforms.json",
15
+ "release-trust-anchor.json"
12
16
  ],
13
17
  "type": "module",
14
18
  "exports": {
15
- "./local-machine": {
16
- "types": "./dist/local-machine.d.ts",
17
- "import": "./dist/local-machine.js"
19
+ "./local-control": {
20
+ "types": "./dist/local-control.d.ts",
21
+ "import": "./dist/local-control.js"
18
22
  }
19
23
  },
20
24
  "publishConfig": {
21
25
  "access": "public"
22
26
  },
23
- "scripts": {
24
- "build": "tsdown && chmod +x dist/index.js",
25
- "dev": "tsx src/index.ts",
26
- "start": "tsx src/index.ts",
27
- "prepack": "pnpm build",
28
- "check": "tsgo --noEmit",
29
- "check:tsc": "tsc --noEmit",
30
- "test": "tsx --test 'src/*.test.ts'"
31
- },
32
27
  "dependencies": {
33
- "@ff-labs/fff-node": "0.9.4",
34
- "@modelcontextprotocol/sdk": "1.29.0",
35
- "ws": "^8.21.0",
36
- "zod": "^4.4.3"
28
+ "undici": "7.22.0"
37
29
  },
38
30
  "devDependencies": {
31
+ "@ff-labs/fff-node": "0.9.4",
32
+ "@modelcontextprotocol/sdk": "1.29.0",
39
33
  "@types/node": "^24.10.1",
40
34
  "@types/ws": "^8.18.1",
35
+ "node-pty": "1.1.0",
36
+ "tar": "7.5.19",
41
37
  "tsdown": "^0.22.3",
42
- "tsx": "4.22.4"
38
+ "tsx": "4.22.4",
39
+ "ws": "^8.21.0",
40
+ "zod": "^4.4.3",
41
+ "@agents/machine-protocol": "0.0.0"
43
42
  },
44
- "optionalDependencies": {
45
- "node-pty": "1.1.0"
43
+ "engines": {
44
+ "node": ">=24.0.0"
45
+ },
46
+ "scripts": {
47
+ "build": "tsdown && chmod +x dist/index.js",
48
+ "dev": "tsx src/index.ts",
49
+ "start": "tsx src/index.ts",
50
+ "check": "tsgo --noEmit",
51
+ "check:tsc": "tsc --noEmit",
52
+ "test": "tsx --test 'src/*.test.ts' && node --test 'scripts/*.test.mjs'",
53
+ "release:check-anchor": "node scripts/check-release-trust-anchor.mjs",
54
+ "release:build-platform": "node scripts/build-platform-package.mjs"
46
55
  }
47
- }
56
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "releasePackageName": "@sipher.dev/connector-release",
4
+ "npmRegistryOrigin": "https://registry.npmjs.org",
5
+ "publicKey": "-----BEGIN PUBLIC KEY-----\nMCowBQYDK2VwAyEAOjoSJrN1tu1cMZp/biuSMAdqsIGshWkyttGYtlmcDSs=\n-----END PUBLIC KEY-----\n",
6
+ "latest": {
7
+ "sequence": 1,
8
+ "indexVersion": "0.1.0",
9
+ "digest": "a6171b03615403f9c0fc039bc53b57d48e4ecad52bfb72fa08d0ea47866b8938"
10
+ }
11
+ }