-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 3.96 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 3.96 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "squeaky-clean",
"version": "0.4.10",
"description": "✨ Easy, customizable and expandable development cache cleaner CLI with interactive configuration! Smart, safe, and configurable cache management for 25+ development tools.",
"main": "dist/cli.js",
"bin": {
"squeaky": "dist/cli.js",
"squeaky-clean": "dist/cli.js"
},
"scripts": {
"build": "tsc --build",
"build:watch": "tsc --watch",
"build:patch": "npm run version:patch && npm run build",
"build:minor": "npm run version:minor && npm run build",
"build:major": "npm run version:major && npm run build",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
"clean": "rimraf dist .tsbuildinfo",
"prepublishOnly": "npm run clean && tsc --build --force",
"postpublish": "bash scripts/update-homebrew.sh",
"release": "npm run test && npm run build && npm pack && npm publish && npm run release:github",
"release:patch": "npm run version:patch && npm run test && npm run build && npm publish && npm run release:github",
"release:minor": "npm run version:minor && npm run test && npm run build && npm publish && npm run release:github",
"release:major": "npm run version:major && npm run test && npm run build && npm publish && npm run release:github",
"remove-self-dependency": "node scripts/remove-self-dependency.js",
"version:patch": "npm version patch && npm run remove-self-dependency && node scripts/update-version.js",
"version:minor": "npm version minor && npm run remove-self-dependency && node scripts/update-version.js",
"version:major": "npm version major && npm run remove-self-dependency && node scripts/update-version.js",
"version:sync": "npm run remove-self-dependency && node scripts/update-version.js",
"release:github": "node scripts/update-github-release.js",
"generate:cleaner": "tsx scripts/generate-cleaner.ts"
},
"keywords": [
"cache",
"clear",
"developer",
"tools",
"interactive",
"configuration",
"wizard",
"npm",
"yarn",
"pnpm",
"bun",
"webpack",
"vite",
"nx",
"turbo",
"flutter",
"gradle",
"docker",
"vscode",
"xcode",
"android-studio",
"jetbrains",
"chrome",
"firefox",
"node",
"build",
"cli",
"development",
"clean",
"system",
"performance",
"disk-space",
"cleanup",
"maintenance"
],
"author": {
"name": "Justin Chen",
"email": "justin.sc.chen@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chendrizzy/squeaky-clean.git"
},
"bugs": {
"url": "https://github.com/chendrizzy/squeaky-clean/issues"
},
"homepage": "https://github.com/chendrizzy/squeaky-clean#readme",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"commander": "^11.1.0",
"execa": "^5.1.1",
"filesize": "^10.1.6",
"fs-extra": "^11.3.2",
"globby": "^11.1.0",
"inquirer": "^8.2.7",
"minimatch": "^10.1.1",
"ora": "^5.4.1",
"picocolors": "^1.1.1",
"play-sound": "^1.1.6",
"rimraf": "^6.1.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/node": "^20.19.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"memfs": "^4.51.1",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^6.4.1",
"vitest": "^3.2.4"
}
}