Bring the node-addon-landlock-run tree (tag v0.0.1, commit 614f7fd) into native/landlock-run as its source of record: launcher development happens here, next to the harness consumers, and the standalone repository becomes the release mirror the tree is exported to for packing and publishing (procedure in native/README.md). The subtree keeps its own pnpm workspace and lockfile and is NOT added to the harness workspace: harness installs, gates, and CI never touch it. The mirror's .github/ stays out of the subtree; a separate manually-dispatched workflow (.github/workflows/landlock-run.yml) runs the subtree's CI legs — the per-architecture native builds, real-kernel launcher proofs, and pack rehearsal — adapted with working-directory/cache paths. eslint ignores the subtree like vendor/; AGENTS.md gains the native/ layout line (+5 words on its budget ceiling).
31 lines
1.1 KiB
JSON
31 lines
1.1 KiB
JSON
{
|
|
"name": "node-addon-landlock-run-workspace",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"type": "module",
|
|
"license": "BSD-3-Clause",
|
|
"packageManager": "pnpm@11.7.0",
|
|
"scripts": {
|
|
"build": "pnpm build:ts",
|
|
"build:ts": "tsc -b",
|
|
"build:native": "tsx ./scripts/build.ts",
|
|
"typecheck": "tsc --noEmit && tsc -b --dry",
|
|
"test": "node ./test/entry.test.js && node ./test/launcher.test.js",
|
|
"test:entry": "node ./test/entry.test.js",
|
|
"test:launcher": "node ./test/launcher.test.js",
|
|
"gha:matrix": "node ./scripts/github-matrix.mjs",
|
|
"release:bump": "node ./scripts/bump-release.mjs",
|
|
"release:commit": "node ./scripts/commit-release.mjs",
|
|
"release:assemble-prebuilds": "node ./scripts/assemble-prebuilds.mjs",
|
|
"release:verify": "node ./scripts/verify-release.mjs",
|
|
"release:pack": "node ./scripts/pack-release.mjs",
|
|
"release:verify-packed-install": "node ./scripts/verify-packed-install.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"node-addon-landlock-run": "workspace:*",
|
|
"@types/node": "^24.10.0",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|