{
  "name": "@sejhey/rest-api-v1-ts",
  "version": "0.3.1",
  "description": "The official REST API to access Sejhey translation management system features programmatically.",
  "author": "Patrik Starck",
  "license": "MIT",
  "homepage": "https://sejhey.com/",
  "bugs": {
    "email": "info@sejhey.com"
  },
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "keywords": [
    "localization",
    "internationalization",
    "i18n",
    "l10n",
    "translation",
    "languages",
    "multilingual",
    "language-support",
    "translate",
    "sejhey"
  ],
  "scripts": {
    "build:types": "tsc -p tsconfig.types.json",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build": "npm run build:types && npm run build:cjs && npm run build:esm",
    "build:move_from_generated": "node build-move.js",

    "deploy": "npm run build && npm pack && npm publish --registry http://localhost:4873",
    "deploy_prod": "npm run build && npm pack && npm publish",
    "test": "npm run test:sanity",
    "test:sanity": "node tests/sanity.test.js"
  },
  "peerDependencies": {},
  "devDependencies": {
    "typescript": "^5.0.0"
  }
}
