-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 786 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@bhaireshm/dnm",
"version": "0.1.1",
"description": "Deletes node_modules folders from a given directory and its subdirectories",
"main": "./dist/dnm.js",
"private": false,
"bin": {
"dnm": "./dist/dnm.js"
},
"scripts": {
"build": "sh ./src/build.sh",
"watch": "pnpm build && tsc --build --watch",
"start": "pnpm build && node ./dist/dnm.js",
"prepublishOnly": "pnpm build"
},
"keywords": [
"delete",
"node_modules"
],
"files": [
"dist"
],
"author": "Bhairesh M",
"repository": {
"type": "git",
"url": "https://github.com/bhaireshm/delete_node_modules.git"
},
"homepage": "https://github.com/bhaireshm/delete_node_modules",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.9.0"
}
}