Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Commit 0599bcd

Browse files
committed
Update cli package.json
1 parent de360d7 commit 0599bcd

1 file changed

Lines changed: 26 additions & 4 deletions

File tree

packages/cli/package.json

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11
{
2-
"private": true,
3-
"name": "cli",
2+
"name": "@github-version-checker/cli",
3+
"version": "2.3.0",
4+
"description": "CLI version of github-version-checker",
5+
"bin": "./dist/index.js",
6+
"keywords": [
7+
"version-checker",
8+
"github-api"
9+
],
10+
"author": "Axel Rindle <mail@axelrindle.de>",
11+
"license": "MIT",
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/axelrindle/github-version-checker.git"
15+
},
16+
"bugs": {
17+
"url": "https://github.com/axelrindle/github-version-checker/issues"
18+
},
19+
"homepage": "https://axelrindle.github.io/github-version-checker/",
420
"scripts": {
21+
"clean": "rm -rf .nyc_output coverage dist pkg",
522
"build": "tsc",
6-
"package": "pkg dist/index.js --output pkg/github-version-checker --targets node18-linux-x64,node18-win-x64,node18-macos-x64"
23+
"start": "tsx src/index.ts",
24+
"package": "pkg dist/index.js --output pkg/github-version-checker --targets node18-linux-x64,node18-win-x64,node18-macos-x64",
25+
"prepublishOnly": "npm run build"
726
},
827
"devDependencies": {
928
"@sindresorhus/tsconfig": "^3.0.1",
@@ -16,5 +35,8 @@
1635
"github-version-checker": "*",
1736
"pretty-error": "^4.0.0",
1837
"sade": "^1.8.1"
19-
}
38+
},
39+
"files": [
40+
"dist/"
41+
]
2042
}

0 commit comments

Comments
 (0)