Skip to content

Commit 120fcd0

Browse files
authored
Remove unused dependencies from package.json (#1055)
This patch removes `mkdirp` and `mz` from `dependencies` in `package.json` as they are not used in the project. Meanwhile, `rimraf` and `uuid` are moved into `devDependencies` in `package.json` as they are for testing only. Fix: #1054
1 parent c98ce74 commit 120fcd0

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

package.json

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,12 @@
5858
"jsdoc": "^4.0.4",
5959
"lint-staged": "^15.2.10",
6060
"mocha": "^11.0.2",
61+
"rimraf": "^6.0.1",
6162
"sinon": "^19.0.2",
6263
"tree-kill": "^1.2.2",
6364
"tsd": "^0.31.2",
64-
"typescript": "^5.7.2"
65+
"typescript": "^5.7.2",
66+
"uuid": "^11.0.3"
6567
},
6668
"dependencies": {
6769
"@rclnodejs/ref-array-di": "^1.2.2",
@@ -74,12 +76,8 @@
7476
"fs-extra": "^11.2.0",
7577
"is-close": "^1.3.3",
7678
"json-bigint": "^1.0.0",
77-
"mkdirp": "^3.0.1",
78-
"mz": "^2.7.0",
7979
"nan": "^2.22.0",
8080
"prettier": "^3.4.2",
81-
"rimraf": "^6.0.1",
82-
"uuid": "^11.0.3",
8381
"walk": "^2.3.15"
8482
},
8583
"husky": {

0 commit comments

Comments
 (0)