{
  "name": "@basetime/pintail-sdk-ts",
  "version": "0.1.10",
  "description": "Pintail SDK for TypeScript",
  "homepage": "https://github.com/basetime/pintail-sdk-ts",
  "bugs": {
    "url": "https://github.com/basetime/pintail-sdk-ts/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/basetime/pintail-sdk-ts.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "engines": {
    "node": ">=22.12.0"
  },
  "license": "MIT",
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@jest/globals": "^30.4.1",
    "@types/jest": "^30.0.0",
    "esbuild": "^0.28.0",
    "eslint": "^9.39.4",
    "jest": "^30.4.1",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.9",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.2"
  },
  "dependencies": {
    "@trivago/prettier-plugin-sort-imports": "^6.0.2"
  },
  "scripts": {
    "dev": "pnpm run build && npx http-server -p 8485 .",
    "build": "pnpm run build:cjs && pnpm run build:browser",
    "build:cjs": "tsc -p tsconfig.json",
    "build:browser": "esbuild src/browser.ts --bundle --format=iife --target=es2017 --minify --sourcemap --outfile=dist/browser/index.js",
    "clean": "rimraf dist coverage",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint .",
    "publish:cdn": "bash scripts/publish-cdn.sh",
    "release": "gh workflow run Release --ref main -f release_type=patch",
    "release:patch": "gh workflow run Release --ref main -f release_type=patch",
    "release:minor": "gh workflow run Release --ref main -f release_type=minor",
    "release:major": "gh workflow run Release --ref main -f release_type=major",
    "test": "jest"
  }
}