{
  "name": "@absolutejs/manifest",
  "version": "0.10.0",
  "description": "The AbsoluteJS package manifest contract. Every @absolutejs/* package exports a typed manifest (settings schema, env requirements, adapter slots, wiring recipes, AI tools) from its ./manifest subpath; this package is the contract those manifests are written against, plus bridges that turn any manifest into an AI tool map or a remote MCP tool registry.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/absolutejs/manifest.git"
  },
  "homepage": "https://github.com/absolutejs/manifest",
  "bugs": {
    "url": "https://github.com/absolutejs/manifest/issues"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "type": "module",
  "license": "MIT",
  "author": "Alex Kahn",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "absolute-manifest": "dist/cli.js"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "LICENSE",
    "README.md",
    "CONTRACTS.md"
  ],
  "scripts": {
    "build": "rm -rf dist && bun build src/index.ts src/cli.ts --outdir dist --root src --sourcemap --target=bun --external typebox --external 'typebox/*' && tsc --project tsconfig.build.json",
    "test": "bun test tests/",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write \"./**/*.{ts,json,md}\"",
    "lint": "eslint . --max-warnings 0",
    "check:package": "bun run typecheck && bun run lint && bun run verify-package && bun run build && bun run test",
    "verify-package": "bun src/cli.ts verify-package",
    "release": "bun run format && bun run check:package && bun publish"
  },
  "keywords": [
    "absolutejs",
    "manifest",
    "ai-tools",
    "mcp",
    "typebox",
    "no-code",
    "package-metadata"
  ],
  "peerDependencies": {
    "typebox": ">=1.3.0 <2"
  },
  "devDependencies": {
    "@absolutejs/ai": "^0.0.41",
    "@absolutejs/mcp": "^0.12.0",
    "@eslint/js": "^10.0.1",
    "@stylistic/eslint-plugin": "^5.10.0",
    "@types/bun": "^1.3.14",
    "@typescript-eslint/parser": "^8.63.0",
    "eslint": "^10.7.0",
    "eslint-plugin-absolute": "^0.11.9",
    "eslint-plugin-promise": "^7.3.0",
    "eslint-plugin-security": "^4.0.1",
    "globals": "^17.7.0",
    "prettier": "^3.8.3",
    "typebox": "1.3.16",
    "typescript": "^5.9.0",
    "typescript-eslint": "^8.63.0"
  }
}
