@goldziher/voom 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 (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +23 -0
package/README.md ADDED
@@ -0,0 +1,16 @@
1
+ # @goldziher/voom
2
+
3
+ Fast, safe, parallel build-artifact pruning across 20+ language ecosystems.
4
+
5
+ ```bash
6
+ npm install -g @goldziher/voom
7
+ voom --dry-run ~
8
+ ```
9
+
10
+ Installing downloads the prebuilt `voom` binary for your platform from the
11
+ [GitHub release](https://github.com/Goldziher/voom/releases) matching this package's version.
12
+
13
+ **voom deletes by default.** Use `--dry-run` to preview. It never removes a directory without
14
+ a marker file proving its ecosystem, and it never touches `node_modules/`.
15
+
16
+ Full documentation: <https://github.com/Goldziher/voom>
package/package.json ADDED
@@ -0,0 +1,23 @@
1
+ {
2
+ "name": "@goldziher/voom",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder release reserving the package name. Install 0.1.0 or later for the actual CLI.",
5
+ "keywords": ["cleanup", "build", "artifacts", "disk-space", "cli", "prune", "rust", "monorepo"],
6
+ "author": "Na'aman Hirschfeld <nhirschfeld@gmail.com>",
7
+ "license": "MIT",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/Goldziher/voom.git"
11
+ },
12
+ "homepage": "https://github.com/Goldziher/voom#readme",
13
+ "bugs": {
14
+ "url": "https://github.com/Goldziher/voom/issues"
15
+ },
16
+ "publishConfig": {
17
+ "access": "public"
18
+ },
19
+ "files": ["README.md"],
20
+ "engines": {
21
+ "node": ">=14"
22
+ }
23
+ }