pumice-md 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 +7 -0
  2. package/index.js +2 -0
  3. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,7 @@
1
+ # pumice
2
+
3
+ **Virtual Obsidian** — an Obsidian-compatible note system that runs entirely on an in-browser virtual filesystem. Backend-free and open source.
4
+
5
+ > 🪨 Same volcanic glass as Obsidian, but light enough to float — runs anywhere, no server.
6
+
7
+ This package name is reserved while the project is in early development. Stay tuned.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // pumice — virtual Obsidian (in-browser, backend-free). Package name reserved; implementation in progress.
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "pumice-md",
3
+ "version": "0.0.1",
4
+ "description": "Virtual Obsidian — an Obsidian-compatible note system running on an in-browser virtual filesystem. Backend-free and open source. (Name reserved; package in development.)",
5
+ "keywords": ["obsidian", "markdown", "notes", "pkm", "virtual-filesystem", "browser"],
6
+ "license": "MIT",
7
+ "author": "aaronvolter",
8
+ "main": "index.js",
9
+ "files": ["index.js", "README.md"]
10
+ }