multimodemind 0.0.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +1 -0
  3. package/package.json +19 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # mmind
2
+
3
+ Name placeholder. There is no functionality here yet — this release exists to reserve the package name.
4
+
5
+ A real implementation will land in a future version.
6
+
7
+ ## License
8
+
9
+ MIT
package/index.js ADDED
@@ -0,0 +1 @@
1
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "multimodemind",
3
+ "version": "0.0.1",
4
+ "description": "Placeholder. This package name is reserved; a real release is coming.",
5
+ "license": "MIT",
6
+ "author": "benmclendon@gmail.com",
7
+ "keywords": [
8
+ "mmind",
9
+ "multimodemind"
10
+ ],
11
+ "main": "index.js",
12
+ "files": [
13
+ "index.js",
14
+ "README.md"
15
+ ],
16
+ "publishConfig": {
17
+ "access": "public"
18
+ }
19
+ }