-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.16 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.16 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
{
"name": "@kud/soap-cli",
"version": "3.0.18",
"description": "An app cleaner cli for macOS",
"main": "dist/index.js",
"bin": {
"soap": "dist/index.js"
},
"scripts": {
"dev": "tsx index.ts",
"build": "tsup",
"postbuild": "chmod +x dist/index.js",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kud/soap-cli.git"
},
"keywords": [
"macos",
"app-cleaner",
"uninstall",
"homebrew",
"cask",
"cli",
"cleanup",
"appcleaner"
],
"author": "Erwann Mest <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kud/soap-cli/issues"
},
"homepage": "https://kud.github.io/soap-cli",
"type": "module",
"files": [
"dist"
],
"dependencies": {
"chalk": "5.6.2",
"inquirer": "13.3.2",
"signale": "1.4.0",
"trash": "10.1.1",
"zx": "8.8.5"
},
"devDependencies": {
"@types/node": "25.5.0",
"@types/signale": "1.4.7",
"tsup": "8.5.1",
"tsx": "4.21.0",
"typescript": "6.0.2",
"vitest": "4.1.2"
}
}