{
  "name": "tiny-runtime-injector",
  "version": "1.0.2",
  "description": "A library that helps you download complete, lightweight runtime environments like Node.js, Bun, and uv. It's useful for including minimal runtimes when building applications like Electron.",
  "main": "dist/index.js",
  "type": "module",
  "types": "dist/index.d.ts",
  "bin": {
    "tiny-runtime-injector": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "test": "node test-downloads.js",
    "test:downloads": "npm run build && node test-downloads.js",
    "test:urls": "npm run build && node -e \"import('./test-downloads.js').then(m => m.runUrlValidationTests())\"",
    "prepare": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zerob13/tiny-runtime-injector.git"
  },
  "keywords": [
    "node.js",
    "bun",
    "uv",
    "runtime",
    "injector",
    "javascript",
    "python",
    "package-manager",
    "electron",
    "cross-platform"
  ],
  "author": "zerob13",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/zerob13/tiny-runtime-injector/issues"
  },
  "homepage": "https://github.com/zerob13/tiny-runtime-injector#readme",
  "dependencies": {
    "axios": "^1.8.3",
    "commander": "^13.1.0",
    "fs-extra": "^11.3.0",
    "glob": "^11.0.2",
    "tar": "^7.4.3"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.11.24",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=20"
  }
}
