{
  "name": "pi-career",
  "version": "0.2.0",
  "private": false,
  "description": "Pi tools, slash commands, and Agent Skill for deterministic Career Core workflows",
  "license": "MIT OR Apache-2.0",
  "author": {
    "name": "Revaz Zakalashvili",
    "url": "https://github.com/revazi"
  },
  "homepage": "https://github.com/revazi/pi-career#readme",
  "bugs": {
    "url": "https://github.com/revazi/pi-career/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/revazi/pi-career.git"
  },
  "keywords": [
    "pi-package"
  ],
  "type": "module",
  "engines": {
    "node": ">=22.19.0"
  },
  "files": [
    "dist",
    "docs",
    "skills",
    "CHANGELOG.md",
    "SECURITY.md",
    "LICENSE-APACHE",
    "LICENSE-MIT",
    "NOTICE"
  ],
  "scripts": {
    "clean": "node -e \"import('node:fs/promises').then(({rm}) => rm('dist', {recursive:true, force:true}))\"",
    "build": "node scripts/build.mjs",
    "typecheck": "tsc --noEmit",
    "test": "npm run test:process && npm run test:runtime && npm run test:workflow && npm run test:audit",
    "test:process": "node --import tsx --test tests/process/process.test.mjs",
    "test:runtime": "node --import tsx --test tests/runtime/runtime.test.mjs",
    "test:workflow": "node --import tsx --test tests/workflow/*.test.mjs",
    "test:audit": "node --test tests/audit/*.test.mjs",
    "test:runtime-resolution": "node --import tsx --test tests/runtime/runtime.test.mjs",
    "test:career-package": "node scripts/test-career-package.mjs",
    "test:pi-smoke": "node scripts/test-pi-package-load.mjs",
    "test:install": "node scripts/test-isolated-install.mjs",
    "test:compat": "node scripts/test-career-package-compat.mjs",
    "check:dist": "node scripts/check-dist.mjs",
    "check:package": "node scripts/check-package.mjs",
    "check:publish": "node scripts/check-publish.mjs",
    "check:links": "node scripts/check-links.mjs",
    "check:secrets": "node scripts/check-secrets.mjs",
    "check:runtime": "node scripts/check-runtime-boundary.mjs",
    "audit:production": "node scripts/audit-production.mjs",
    "audit:full": "node scripts/audit-full.mjs",
    "bench:tokens": "node --import tsx scripts/token-benchmark.mjs",
    "check:syntax": "node --check scripts/*.mjs scripts/lib/*.mjs tests/audit/*.mjs tests/process/*.mjs tests/runtime/*.mjs tests/workflow/*.mjs",
    "check": "npm run typecheck && npm run check:dist && npm test && npm run check:runtime && npm run check:links && npm run check:secrets && npm run check:syntax"
  },
  "peerDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "@earendil-works/pi-tui": "*",
    "typebox": "*"
  },
  "devDependencies": {
    "@earendil-works/pi-ai": "0.84.0",
    "@earendil-works/pi-coding-agent": "0.84.0",
    "@earendil-works/pi-tui": "0.84.0",
    "@types/node": "24.12.4",
    "esbuild": "0.28.1",
    "js-tiktoken": "1.0.21",
    "tsx": "4.23.5",
    "typebox": "1.3.7",
    "typescript": "5.9.3",
    "unpdf": "1.8.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "pi": {
    "extensions": [
      "./dist/index.js"
    ],
    "skills": [
      "./skills/career-core"
    ]
  }
}
