-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1015 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1015 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
34
35
36
37
38
39
40
41
42
43
44
{
"name": "bunkill",
"module": "index.ts",
"main": "index.ts",
"type": "module",
"version": "1.0.2",
"description": "Bun.js-powered node_modules cleanup tool - faster than npkill",
"bin": {
"bunkill": "./index.ts"
},
"engines": {
"bun": ">=1.2.19"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/codingstark-dev/bunkill.git"
},
"homepage": "https://github.com/codingstark-dev/bunkill#readme",
"bugs": {
"url": "https://github.com/codingstark-dev/bunkill/issues"
},
"devDependencies": {
"@types/bun": "latest"
},
"scripts": {
"test": "bun run index.ts --help"
},
"files": [
"index.ts",
"README.md",
"LICENSE"
],
"dependencies": {
"@types/inquirer": "^9.0.8",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"filesize": "^10.1.6",
"inquirer": "^12.8.2"
},
"keywords": ["bun", "node_modules", "cleanup", "disk-space", "cli"],
"author": "Himanshu Mourya",
"license": "MIT"
}