@lix-js/storage-filesystem 0.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.
Files changed (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +3 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # `@lix-js/storage-filesystem`
2
+
3
+ This `0.0.0` package is an inert registry bootstrap. Install a released version
4
+ of `@lix-js/storage-filesystem` instead.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ throw new Error(
2
+ "@lix-js/storage-filesystem@0.0.0 is an inert registry bootstrap; install a released version instead.",
3
+ );
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@lix-js/storage-filesystem",
3
+ "version": "0.0.0",
4
+ "description": "Bootstrap placeholder for the Lix filesystem storage package.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/opral/lix",
10
+ "directory": "packages/storage-filesystem"
11
+ },
12
+ "exports": "./index.js",
13
+ "files": [
14
+ "index.js",
15
+ "README.md"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "tag": "bootstrap"
20
+ }
21
+ }