@gkiely/safe-install 0.1.11 → 0.1.13

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 +5 -4
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -23,14 +23,15 @@ behind a reviewed allowlist in `package.json`.
23
23
 
24
24
  ```txt
25
25
  ignore-scripts=true
26
+ ```
27
+
28
+ Optionally enable (requires 11.14.0+):
29
+
30
+ ```txt
26
31
  allow-git=root
27
32
  allow-remote=root
28
33
  ```
29
34
 
30
- `allow-git=root` and `allow-remote=root` let your project use direct Git or
31
- remote tarball dependencies when you intentionally declare them, while blocking
32
- transitive packages from pulling in those sources.
33
-
34
35
  2. Add script to `package.json`:
35
36
 
36
37
  ```json
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gkiely/safe-install",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Run npm installs with lifecycle scripts disabled, then rebuild explicitly trusted dependencies.",
5
5
  "author": "Grant Kiely <grant@youneedawiki.com>",
6
6
  "license": "MIT",
@@ -55,6 +55,7 @@
55
55
  "typescript": "latest"
56
56
  },
57
57
  "volta": {
58
- "node": "24.14.0"
58
+ "node": "24.14.1",
59
+ "npm": "11.14.1"
59
60
  }
60
61
  }