-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.46 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
54
55
56
57
58
{
"name": "identify-package-manager",
"version": "1.1.0",
"description": "Check the used package manager in a given repository (npm, yarn classic, yarn berry, pnpm, bun)",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"identify-package-manager": "build/cli.js"
},
"scripts": {
"clear-build-folder": "rm -rf ./build",
"transpile": "tsc",
"fix-paths": "tsc-alias",
"make-cli-executable": "chmod +x ./build/cli.js",
"build": "yarn clear-build-folder && yarn transpile && yarn fix-paths && yarn make-cli-executable",
"dev": "yarn nodemon",
"test": "jest"
},
"keywords": [
"npm",
"yarn",
"yarn berry",
"yarn classic",
"yarn 1",
"pnpm",
"package manager",
"lock file",
"detect",
"cli",
"monorepo"
],
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/maks-io/identify-package-manager.git"
},
"author": "Markus Kurzmann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maks-io/identify-package-manager/issues"
},
"homepage": "https://github.com/maks-io/identify-package-manager#readme",
"dependencies": {
"identify-monorepo-root": "^1.0.9",
"minimist": "^1.2.8",
"who-am-i-now": "^2.1.1"
},
"devDependencies": {
"@types/node": "^22.10.1",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"tsc": "^2.0.4",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2"
}
}