{
  "name": "taleseal",
  "version": "0.9.0",
  "description": "Draft, edit and publish a tale — a page your AI writes at a shareable link. The taleseal CLI.",
  "type": "module",
  "license": "MIT",
  "bin": {
    "taleseal": "./dist/cli.js"
  },
  "files": [
    "dist",
    "src"
  ],
  "exports": {
    ".": {
      "bun": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "engines": {
    "node": ">=22"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup src/index.ts src/cli.ts --format esm --clean --target node22 && tsc -p tsconfig.build.json",
    "typecheck": "tsc --noEmit",
    "test": "bun test"
  },
  "dependencies": {
    "@taleseal/core": "^0.2.0",
    "@taleseal/sdk": "^0.3.0"
  },
  "devDependencies": {
    "@types/bun": "^1.2.0",
    "@types/node": "^24.3.0",
    "typescript": "^5.9.3"
  }
}
