| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "name": "node-addon-landlock-run",
- "version": "0.0.1",
- "type": "module",
- "description": "Landlock self-restrict-then-exec launcher for sandboxing subprocesses on Linux: per-platform prebuilt static binaries plus the JS seam that resolves, probes, and speaks their CLI contract",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "exports": {
- ".": {
- "types": "./lib/index.d.ts",
- "default": "./lib/index.js"
- },
- "./package.json": "./package.json"
- },
- "files": [
- "README.md",
- "lib/",
- "!lib/*.tsbuildinfo",
- "src/main.c"
- ],
- "scripts": {
- "build:js": "tsc -b",
- "prepack": "node ../../scripts/verify-entry-lib.mjs"
- },
- "engines": {
- "node": ">=20"
- },
- "license": "BSD-3-Clause",
- "publishConfig": {
- "access": "public"
- },
- "optionalDependencies": {
- "node-addon-landlock-run-linux-arm64": "workspace:*",
- "node-addon-landlock-run-linux-x64": "workspace:*"
- }
- }
|