-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 KB
/
package.json
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
{
"name": "pkg-uninstaller-cli",
"version": "1.2.0",
"main": "./index.ts",
"type": "module",
"bin": {
"pkg-uninstaller": "dist/index.js",
"pkg-u": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/theBGuy/pkg-uninstaller-cli.git"
},
"scripts": {
"dev": "tsx ./index.ts",
"build": "tsc",
"release": "release-it"
},
"keywords": [
"uninstall",
"cli",
"nodejs",
"packages"
],
"author": "theBGuy <[email protected]>",
"license": "MIT",
"description": "A CLI tool to uninstall Node.js packages interactively",
"homepage": "https://github.com/theBGuy/pkg-uninstaller-cli#readme",
"funding": {
"type": "individual",
"url": "https://buymeacoffee.com/thebguy"
},
"bugs": {
"url": "https://github.com/theBGuy/pkg-uninstaller-cli/issues"
},
"dependencies": {
"@babel/core": "^7.26.0",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"glob": "^11.0.0",
"inquirer": "^12.3.0"
},
"devDependencies": {
"@babel/types": "^7.26.3",
"@biomejs/biome": "^1.9.4",
"@release-it/bumper": "^6.0.1",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^22.10.3",
"release-it": "^17.11.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}