-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.37 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
{
"name": "what-pm",
"description": "Detects what package manager was used for installation",
"version": "3.1.0",
"bin": {
"what-pm": "./bin/index.mjs",
"whatpm": "./bin/index.mjs"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm-bundler.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.esm-bundler.js",
"require": "./dist/index.cjs.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"directories": {
"bin": "bin",
"dist": "dist",
"src": "src"
},
"files": [
"bin",
"dist",
"typings"
],
"dependencies": {
"@pkgjs/parseargs": "^0.11.0",
"find-up": "^6.3.0",
"pm-info": "workspace:*",
"workspace-root": "workspace:*"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.36.0",
"eslint": "^8.44.0",
"prettier": "^2.8.8"
},
"sideEffects": false,
"keywords": [
"node-kit",
"packageManager",
"which-pm",
"what-pm"
],
"license": "MIT",
"author": "saqqdy <https://github.com/saqqdy>",
"homepage": "https://github.com/saqqdy/node-kit/tree/master/packages/what-pm#readme",
"bugs": {
"url": "https://github.com/saqqdy/node-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/node-kit.git",
"directory": "packages/what-pm"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}