| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "@deepseek-ai/node-addon-system",
- "version": "0.1.2",
- "type": "module",
- "description": "Prebuilt system primitives: a Linux Landlock launcher and asynchronous POSIX flock through stable Node-API",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/deepseek-harness/deepseek-harness.git",
- "directory": "native/system/packages/entry"
- },
- "exports": {
- "./landlock-run": {
- "types": "./lib/index.d.ts",
- "default": "./lib/index.js"
- },
- "./flock": {
- "types": "./lib/flock.d.ts",
- "default": "./lib/flock.js"
- },
- "./package.json": "./package.json"
- },
- "files": [
- "README.md",
- "lib/",
- "!lib/*.tsbuildinfo",
- "src/main.c",
- "src/flock.c"
- ],
- "scripts": {
- "build:js": "tsc -b",
- "prepack": "node ../../scripts/verify-entry-lib.mjs"
- },
- "engines": {
- "node": ">=20"
- },
- "license": "BSD-3-Clause",
- "publishConfig": {
- "access": "public"
- },
- "optionalDependencies": {
- "@deepseek-ai/node-addon-system-darwin-arm64": "workspace:*",
- "@deepseek-ai/node-addon-system-darwin-x64": "workspace:*",
- "@deepseek-ai/node-addon-system-linux-arm64": "workspace:*",
- "@deepseek-ai/node-addon-system-linux-x64": "workspace:*"
- }
- }
|