-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.35 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.35 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
{
"name": "@mulham28/pkgmap",
"version": "1.10.1",
"type": "module",
"description": "One command to see everything installed on your machine",
"keywords": [
"cli",
"package-manager",
"npm",
"brew",
"homebrew",
"pip",
"cargo",
"pacman",
"dnf",
"apk",
"zypper",
"freebsd",
"winget",
"chocolatey",
"scoop",
"nix",
"uv",
"bun",
"pipx",
"poetry",
"helm",
"krew",
"gem",
"volta",
"inventory",
"packages",
"developer-tools"
],
"homepage": "https://github.com/mulhamna/pkgmap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mulhamna/pkgmap.git"
},
"bugs": {
"url": "https://github.com/mulhamna/pkgmap/issues"
},
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"bin": {
"pkgmap": "bin/pkgmap.js"
},
"scripts": {
"lint": "eslint src/ test/",
"test": "node --test",
"format": "prettier --write src/ test/",
"format:check": "prettier --check src/ test/",
"release:check": "node scripts/sync-version-check.mjs",
"start": "node bin/pkgmap.js"
},
"dependencies": {
"chalk": "^5.3.0",
"cli-table3": "^0.6.3",
"commander": "^12.0.0",
"ora": "^9.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.0",
"prettier": "^3.0.0"
}
}