@signetai/adapter-openclaw 0.1.111

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 +40 -0
package/package.json ADDED
@@ -0,0 +1,40 @@
1
+ {
2
+ "name": "@signetai/adapter-openclaw",
3
+ "version": "0.1.111",
4
+ "description": "Signet adapter for OpenClaw — runtime plugin for AI agent memory",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "bun build src/index.ts --outdir dist --target node && tsc --emitDeclarationOnly --declaration --outDir dist",
19
+ "dev": "bun --watch src/index.ts"
20
+ },
21
+ "peerDependencies": {
22
+ "openclaw": ">=0.1.0"
23
+ },
24
+ "publishConfig": {
25
+ "access": "public"
26
+ },
27
+ "keywords": [
28
+ "signet",
29
+ "openclaw",
30
+ "adapter",
31
+ "ai-memory",
32
+ "agent-identity"
33
+ ],
34
+ "license": "Apache-2.0",
35
+ "repository": {
36
+ "type": "git",
37
+ "url": "https://github.com/Signet-AI/signetai.git",
38
+ "directory": "packages/adapters/openclaw"
39
+ }
40
+ }