-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.25 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.25 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tukuyomil032/broom",
"private": false,
"version": "1.0.51",
"description": "🧹 macOS Disk Cleanup CLI - Clean up caches, logs, trash, browser data, dev artifacts, and more",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"bin": {
"broom": "./dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"prepare": "husky",
"prepublishOnly": "bun run build",
"dev": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"lint-staged": "lint-staged",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\""
},
"keywords": [
"cli",
"macos",
"cleanup",
"disk-space",
"cache-cleaner",
"system-maintenance",
"typescript"
],
"author": "tukuyomil032",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tukuyomil032/broom.git"
},
"bugs": {
"url": "https://github.com/tukuyomil032/broom/issues"
},
"homepage": "https://github.com/tukuyomil032/broom#readme",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin"
],
"dependencies": {
"@inquirer/prompts": "^8.2.0",
"@types/handlebars": "^4.1.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"fast-glob": "^3.3.3",
"handlebars": "^4.7.8",
"inquirer": "^13.2.1",
"ora": "^9.1.0",
"p-limit": "^7.2.0",
"systeminformation": "^5.30.6",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/blessed": "^0.1.27",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}