@remnic/plugin-openclaw 1.0.0

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,54 @@
1
+ {
2
+ "name": "@remnic/plugin-openclaw",
3
+ "version": "1.0.0",
4
+ "description": "OpenClaw adapter for Remnic memory — thin wrapper delegating to @remnic/core",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./dist/index.js"
10
+ }
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "openclaw.plugin.json"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public",
18
+ "provenance": true
19
+ },
20
+ "openclaw": {
21
+ "plugin": "./openclaw.plugin.json",
22
+ "extensions": [
23
+ "./dist/index.js"
24
+ ]
25
+ },
26
+ "scripts": {
27
+ "build": "tsup --config tsup.config.ts",
28
+ "check-types": "tsc --noEmit",
29
+ "prepublishOnly": "npm run build"
30
+ },
31
+ "dependencies": {
32
+ "@remnic/core": "workspace:*"
33
+ },
34
+ "peerDependencies": {
35
+ "openclaw": "*"
36
+ },
37
+ "devDependencies": {
38
+ "tsup": "^8.5.1",
39
+ "typescript": "^5.9.3"
40
+ },
41
+ "license": "MIT",
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/joshuaswarren/remnic.git",
45
+ "directory": "packages/plugin-openclaw"
46
+ },
47
+ "keywords": [
48
+ "remnic",
49
+ "memory",
50
+ "openclaw",
51
+ "adapter",
52
+ "plugin"
53
+ ]
54
+ }