buildahcker
Version:
Buildahcker is a node.js library to create and run commands in OCI (Open Container Initiative) container images (or docker images), based on Buildah and a hash-based cache. It also contains utilities to easily create a partitioned bootable disk image of a
73 lines (72 loc) • 1.91 kB
JSON
{
"name": "buildahcker",
"version": "0.8.0",
"description": "Buildahcker is a node.js library to create and run commands in OCI (Open Container Initiative) container images (or docker images), based on Buildah and a hash-based cache. It also contains utilities to easily create a partitioned bootable disk image of a Linux system.",
"keywords": [
"buildah",
"build",
"docker",
"image",
"OCI",
"Open Container Initiative",
"container",
"hash",
"cache",
"squashfs",
"mksquashfs",
"parted",
"partition",
"gpt",
"grub",
"grub-install",
"grub-bios-setup",
"disk",
"boot",
"bootable"
],
"bugs": {
"url": "https://github.com/davdiv/buildahcker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/davdiv/buildahcker.git"
},
"author": "DivDE <divde@musicociel.fr>",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"ci": "npm run build && npm run test && npm run doc && npm run lint && npm run format:check",
"test": "npm run vitest run && tsc -p tsconfig.test.json",
"vitest": "buildah unshare vitest",
"vitest:ui": "buildah unshare vitest --ui",
"doc": "typedoc",
"build": "vite build && tsc -p tsconfig.json",
"format:check": "prettier . --list-different",
"format:fix": "prettier . --write",
"lint": "eslint ."
},
"devDependencies": {
"@types/node": "^22.15.15",
"@vitest/ui": "^3.1.3",
"crc-32": "^1.2.2",
"eslint": "^9.26.0",
"prettier": "^3.5.3",
"typedoc": "^0.28.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.0",
"vite": "^6.3.5",
"vitest": "^3.1.3"
}
}