@sandboxpm/store 0.1.0 → 0.1.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 (2) hide show
  1. package/README.md +9 -0
  2. package/package.json +3 -2
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # @sandboxpm/store
2
+
3
+ Content-addressable store (CAS) for [sandboxpm](https://www.npmjs.com/package/sandboxpm) — SHA-512 keyed hard links, shared once across all projects.
4
+
5
+ Internal building block of sandboxpm — not intended for standalone use. See the [main repository](https://github.com/daviddaco1/sandboxpm) for documentation.
6
+
7
+ ## License
8
+
9
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sandboxpm/store",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Content-addressable store (CAS) for sandboxpm — SHA-512 keyed hard links",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -8,6 +8,7 @@
8
8
  "url": "git+https://github.com/daviddaco1/sandboxpm.git",
9
9
  "directory": "packages/store"
10
10
  },
11
+ "homepage": "https://sandboxpm.andresodev.com",
11
12
  "publishConfig": {
12
13
  "access": "public"
13
14
  },
@@ -19,7 +20,7 @@
19
20
  "!dist/**/*.tsbuildinfo"
20
21
  ],
21
22
  "dependencies": {
22
- "@sandboxpm/config": "0.1.0"
23
+ "@sandboxpm/config": "0.1.1"
23
24
  },
24
25
  "scripts": {
25
26
  "build": "tsc --build",