release-installer
Version:
Simple GitHub release installer.
47 lines (46 loc) • 966 B
JSON
{
"name": "release-installer",
"version": "0.1.1",
"description": "Simple GitHub release installer.",
"license": "MIT",
"author": "tbeseda",
"repository": {
"type": "git",
"url": "https://github.com/tbeseda/release-installer.git"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"release-installer": "dist/cli.js"
},
"files": [
"dist/"
],
"scripts": {
"lint": "biome check --write .",
"build": "rm -rf dist && tsc",
"postbuild": "chmod +x dist/cli.js",
"test": "tsx --test",
"posttest": "npm run lint",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "^2.0.6",
"@types/node": "^24",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"keywords": [
"github",
"release",
"installer",
"cli",
"binary",
"download",
"extract",
"cross-platform",
"nodejs",
"platform-detection"
]
}