codemem 0.1.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.
Files changed (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +6 -0
  3. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # codemem
2
+
3
+ This package name is reserved for the CodeMem/OpenCode memory tooling.
4
+
5
+ The production plugin package and installation instructions will be published soon.
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+
3
+ module.exports = {
4
+ name: "codemem",
5
+ placeholder: true,
6
+ };
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "codemem",
3
+ "version": "0.1.0",
4
+ "description": "CodeMem plugin/runtime package placeholder",
5
+ "main": "index.js",
6
+ "scripts": {},
7
+ "keywords": [
8
+ "opencode",
9
+ "memory",
10
+ "plugin"
11
+ ],
12
+ "author": "Adam Kunicki",
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/kunickiaj/opencode-mem.git"
17
+ },
18
+ "homepage": "https://github.com/kunickiaj/opencode-mem",
19
+ "bugs": {
20
+ "url": "https://github.com/kunickiaj/opencode-mem/issues"
21
+ },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
25
+ "type": "commonjs"
26
+ }