{
  "name": "@appthreat/caxa",
  "version": "3.0.1",
  "description": "Package Node.js applications into executable binaries",
  "author": "Team AppThreat <cloud@appthreat.com>",
  "homepage": "https://github.com/appthreat/caxa",
  "bugs": "https://github.com/appthreat/caxa/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AppThreat/caxa.git"
  },
  "license": "MIT",
  "keywords": [
    "packing",
    "deployment",
    "binary"
  ],
  "exports": "./build/index.mjs",
  "types": "./build/index.d.mts",
  "bin": {
    "caxa": "build/index.mjs"
  },
  "scripts": {
    "prepare": "npm run prepare:stubs && tsc",
    "prepare:stubs": "node scripts/build-stubs.mjs",
    "pretest": "npm run prepare:stubs",
    "test": "npm run test:lint && npm run test:go && npm run test:e2e",
    "test:lint": "prettier --check \"source/**/*.mts\" --end-of-line auto",
    "test:go": "cd stubs && go test -v",
    "test:e2e": "node test/e2e.test.mjs"
  },
  "dependencies": {
    "archiver": "^8.0.0"
  },
  "devDependencies": {
    "@types/archiver": "^7.0.0",
    "@types/node": "^25.7.0",
    "prettier": "^3.6.2",
    "typescript": "^6.0.3"
  },
  "engines": {
    "node": ">=22.15.0"
  }
}
