-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 986 Bytes
/
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
{
"name": "@joekarow/act-which-package-mgr",
"version": "1.0.0",
"description": "GitHub Action: Identifies which node package manager is in use for a given repo",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.js --license licenses.txt",
"license": "generate-license-file --input package.json --output licenses.txt --overwrite",
"dist": "pnpm license && pnpm build"
},
"keywords": [
"GitHub Action",
"pnpm",
"npm",
"yarn",
"package manager"
],
"author": "Joe Karow",
"license": "GPLv3",
"dependencies": {
"@actions/core": "^1.9.0",
"ansi-styles": "^6.1.0",
"detect-package-manager": "^2.0.1"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"eslint": "^8.19.0",
"generate-license-file": "^1.3.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "https://github.com/JoeKarow/act-which-package-mgr.git"
}
}