deepdeps 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 +33 -0
- package/package.json +2 -1
- package/platforms.json +5 -5
package/README.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# DeepDeps 🔍
|
|
2
|
+
|
|
3
|
+
**See what you're really installing.**
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g deepdeps
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
DeepDeps analyzes your project dependencies and shows you the full picture — not just what you declared, but everything that actually gets installed.
|
|
10
|
+
|
|
11
|
+
### Commands
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
deepdeps analyze Full dependency analysis
|
|
15
|
+
deepdeps tree Dependency tree (instant, no network)
|
|
16
|
+
deepdeps diff Compare two analyses
|
|
17
|
+
deepdeps security Check for CVEs
|
|
18
|
+
deepdeps report Generate HTML/MD/JSON report
|
|
19
|
+
deepdeps ui Interactive web dashboard
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Supported ecosystems
|
|
23
|
+
|
|
24
|
+
Node.js, Python, Rust, Go, Maven, NuGet
|
|
25
|
+
|
|
26
|
+
### Links
|
|
27
|
+
|
|
28
|
+
- [GitHub](https://github.com/Sqrilizz/deepdeps)
|
|
29
|
+
- [Issues](https://github.com/Sqrilizz/deepdeps/issues)
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
*Built with Rust + React + D3*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "deepdeps",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "See what you're really installing — dependency analysis tool",
|
|
5
5
|
"bin": {
|
|
6
6
|
"deepdeps": "bin/deepdeps.js"
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
13
|
"bin",
|
|
14
|
+
"README.md",
|
|
14
15
|
"install.js",
|
|
15
16
|
"platforms.json"
|
|
16
17
|
],
|
package/platforms.json
CHANGED
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"linux-x64": {
|
|
3
3
|
"rust-target": "x86_64-unknown-linux-gnu",
|
|
4
|
-
"url": "https://github.com/
|
|
4
|
+
"url": "https://github.com/Sqrilizz/deepdeps/releases/download/v0.1.1/deepdeps-x86_64-unknown-linux-gnu.tar.gz"
|
|
5
5
|
},
|
|
6
6
|
"linux-arm64": {
|
|
7
7
|
"rust-target": "aarch64-unknown-linux-gnu",
|
|
8
|
-
"url": "https://github.com/
|
|
8
|
+
"url": "https://github.com/Sqrilizz/deepdeps/releases/download/v0.1.1/deepdeps-aarch64-unknown-linux-gnu.tar.gz"
|
|
9
9
|
},
|
|
10
10
|
"darwin-x64": {
|
|
11
11
|
"rust-target": "x86_64-apple-darwin",
|
|
12
|
-
"url": "https://github.com/
|
|
12
|
+
"url": "https://github.com/Sqrilizz/deepdeps/releases/download/v0.1.1/deepdeps-x86_64-apple-darwin.tar.gz"
|
|
13
13
|
},
|
|
14
14
|
"darwin-arm64": {
|
|
15
15
|
"rust-target": "aarch64-apple-darwin",
|
|
16
|
-
"url": "https://github.com/
|
|
16
|
+
"url": "https://github.com/Sqrilizz/deepdeps/releases/download/v0.1.1/deepdeps-aarch64-apple-darwin.tar.gz"
|
|
17
17
|
},
|
|
18
18
|
"win32-x64": {
|
|
19
19
|
"rust-target": "x86_64-pc-windows-msvc",
|
|
20
|
-
"url": "https://github.com/
|
|
20
|
+
"url": "https://github.com/Sqrilizz/deepdeps/releases/download/v0.1.1/deepdeps-x86_64-pc-windows-msvc.zip"
|
|
21
21
|
}
|
|
22
22
|
}
|