UNPKG

tiny-runtime-injector

Version:

A library that helps you download complete, lightweight runtime environments like Node.js, Bun, uv, and Python. It's useful for including minimal runtimes when building applications like Electron.

64 lines (63 loc) 1.67 kB
{ "name": "tiny-runtime-injector", "version": "1.2.0", "description": "A library that helps you download complete, lightweight runtime environments like Node.js, Bun, uv, and Python. 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" }, "files": [ "dist", "README.md", "README.zh.md", "LICENSE" ], "scripts": { "build": "tsc", "test": "node test-downloads.js", "test:auth": "npm run build && node --test test/github-auth.test.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", "rtk", "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" } }