@sandboxpm/linker 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.
- package/README.md +9 -0
- package/package.json +6 -5
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# @sandboxpm/linker
|
|
2
|
+
|
|
3
|
+
Builds non-flat `node_modules` from the [sandboxpm](https://www.npmjs.com/package/sandboxpm) content-addressable store.
|
|
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/linker",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Builds non-flat node_modules from the sandboxpm content-addressable store",
|
|
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/linker"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://sandboxpm.andresodev.com",
|
|
11
12
|
"publishConfig": {
|
|
12
13
|
"access": "public"
|
|
13
14
|
},
|
|
@@ -19,10 +20,10 @@
|
|
|
19
20
|
"!dist/**/*.tsbuildinfo"
|
|
20
21
|
],
|
|
21
22
|
"dependencies": {
|
|
22
|
-
"@sandboxpm/
|
|
23
|
-
"@sandboxpm/
|
|
24
|
-
"@sandboxpm/
|
|
25
|
-
"@sandboxpm/
|
|
23
|
+
"@sandboxpm/config": "0.1.1",
|
|
24
|
+
"@sandboxpm/store": "0.1.1",
|
|
25
|
+
"@sandboxpm/resolver": "0.1.1",
|
|
26
|
+
"@sandboxpm/fetcher": "0.1.1"
|
|
26
27
|
},
|
|
27
28
|
"scripts": {
|
|
28
29
|
"build": "tsc --build",
|