Simple script and config (type-safe) for building custom Linux kernels for Firecracker MicroVMs
1{
2 "name": "@tsiry/vmlinux-builder",
3 "version": "0.1.1",
4 "exports": "./build.ts",
5 "license": "MIT",
6 "tasks": {
7 "build": "deno compile --allow-net --allow-read --allow-write --allow-env -o vmlinux-builder ./build.ts"
8 },
9 "imports": {
10 "@es-toolkit/es-toolkit": "jsr:@es-toolkit/es-toolkit@^1.41.0",
11 "@std/assert": "jsr:@std/assert@^1.0.15",
12 "@std/toml": "jsr:@std/toml@^1.0.11",
13 "@zod/zod": "jsr:@zod/zod@^4.1.12",
14 "chalk": "npm:chalk@^5.6.2"
15 }
16}