this repo has no description
1{
2 "name": "release-installer",
3 "version": "0.1.1",
4 "description": "Simple GitHub release installer.",
5 "license": "MIT",
6 "author": "tbeseda",
7 "repository": {
8 "type": "git",
9 "url": "https://github.com/tbeseda/release-installer.git"
10 },
11 "type": "module",
12 "main": "dist/index.js",
13 "types": "dist/index.d.ts",
14 "bin": {
15 "release-installer": "dist/cli.js"
16 },
17 "files": [
18 "dist/"
19 ],
20 "scripts": {
21 "lint": "biome check --write .",
22 "build": "rm -rf dist && tsc",
23 "postbuild": "chmod +x dist/cli.js",
24 "test": "tsx --test",
25 "posttest": "npm run lint",
26 "prepublishOnly": "npm run build"
27 },
28 "devDependencies": {
29 "@biomejs/biome": "^2.0.6",
30 "@types/node": "^24",
31 "tsx": "^4.20.3",
32 "typescript": "^5.8.3"
33 },
34 "keywords": [
35 "github",
36 "release",
37 "installer",
38 "cli",
39 "binary",
40 "download",
41 "extract",
42 "cross-platform",
43 "nodejs",
44 "platform-detection"
45 ]
46}