aris-mac-cleaner 3.0.0 → 4.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.
- package/README.md +223 -56
- package/bin/cli.js +3319 -528
- package/package.json +29 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aris-mac-cleaner",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "4.0.0",
|
|
4
|
+
"description": "Premium macOS maintenance with organized menu and deep clean - Clean caches, free space, analyze disk, and optimize performance",
|
|
5
5
|
"author": "Salvador Reis",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -14,7 +14,20 @@
|
|
|
14
14
|
"cleanup",
|
|
15
15
|
"cache",
|
|
16
16
|
"maintenance",
|
|
17
|
-
"optimization"
|
|
17
|
+
"optimization",
|
|
18
|
+
"disk-analyzer",
|
|
19
|
+
"memory-optimizer",
|
|
20
|
+
"privacy",
|
|
21
|
+
"scheduler",
|
|
22
|
+
"secure-delete",
|
|
23
|
+
"benchmark",
|
|
24
|
+
"system-cleaner",
|
|
25
|
+
"junk-cleaner",
|
|
26
|
+
"duplicate-finder",
|
|
27
|
+
"storage",
|
|
28
|
+
"performance",
|
|
29
|
+
"cli",
|
|
30
|
+
"terminal"
|
|
18
31
|
],
|
|
19
32
|
"repository": {
|
|
20
33
|
"type": "git",
|
|
@@ -28,5 +41,17 @@
|
|
|
28
41
|
],
|
|
29
42
|
"files": [
|
|
30
43
|
"bin"
|
|
31
|
-
]
|
|
44
|
+
],
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"ora": "^5.4.1",
|
|
47
|
+
"chalk": "^4.1.2",
|
|
48
|
+
"cli-progress": "^3.12.0",
|
|
49
|
+
"asciichart": "^1.5.25",
|
|
50
|
+
"gradient-string": "^2.0.2",
|
|
51
|
+
"node-notifier": "^10.0.1",
|
|
52
|
+
"update-notifier": "^6.0.2",
|
|
53
|
+
"boxen": "^5.1.2",
|
|
54
|
+
"figures": "^3.2.0",
|
|
55
|
+
"inquirer": "^8.2.6"
|
|
56
|
+
}
|
|
32
57
|
}
|