-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 833 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 833 Bytes
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
{
"name": "package-manager-proxy",
"version": "1.0.0",
"module": "./src/index.js",
"type": "module",
"license": "MIT",
"author": "Maxwell Chen",
"homepage": "https://github.com/ping-maxwell/package-manager-proxy",
"repository": {
"type": "git",
"url": "https://github.com/ping-maxwell/package-manager-proxy"
},
"keywords": [
"cli",
"package manager",
"proxy",
"alias"
],
"description": "A CLI that automatically detects the package manager (pnpm, bun, npm, yarn, etc.) based on the current directory, and then forwards all CLI args to that package manager.",
"bin": {
"pm": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "bun run src/index.ts"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
}
}