{
  "name": "@spacecomputer-io/orbitport-sdk-ts",
  "version": "0.2.1",
  "description": "Official TypeScript SDK for SpaceComputer Orbitport",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "examples/**/*"
  ],
  "scripts": {
    "build": "npm run clean && tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix",
    "type-check": "tsc --noEmit",
    "test": "jest tests/unit/",
    "test:watch": "jest --watch",
    "test:coverage": "jest tests/unit/ --coverage",
    "test:e2e": "jest tests/e2e.test.ts",
    "test:unit": "jest tests/unit/",
    "prepublishOnly": "npm run clean && npm run type-check && npm run build",
    "prepack": "npm run build",
    "postpack": "npm run clean",
    "version": "git add -A dist",
    "postversion": "git push && git push --tags",
    "publish:patch": "npm version patch && npm publish",
    "publish:minor": "npm version minor && npm publish",
    "publish:major": "npm version major && npm publish",
    "publish:beta": "npm version prerelease --preid=beta && npm publish --tag beta",
    "publish:alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha",
    "pack": "npm pack",
    "pack:dry-run": "npm pack --dry-run",
    "publish:dry-run": "npm publish --dry-run",
    "docs": "npm run build && typedoc src/index.ts --out docs --theme default",
    "examples:ctrng": "npm run build && npx ts-node examples/ctrng.ts",
    "examples:kms": "npm run build && npx ts-node examples/kms.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/spacecomputer-io/orbitport-sdk-ts.git"
  },
  "keywords": [
    "spacecomputer",
    "orbitport",
    "ctrng",
    "rng",
    "sdk",
    "typescript",
    "random",
    "cryptography",
    "ipfs",
    "beacon",
    "true-random",
    "quantum",
    "entropy",
    "kms",
    "key-management",
    "encryption",
    "signing",
    "ethereum"
  ],
  "author": "Eason Chai",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/spacecomputer-io/orbitport-sdk-ts/issues"
  },
  "homepage": "https://github.com/spacecomputer-io/orbitport-sdk-ts#readme",
  "engines": {
    "node": ">=22.0.0"
  },
  "dependencies": {
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@eslint/js": "^9.36.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.3.0",
    "@typescript-eslint/eslint-plugin": "^8.57.0",
    "@typescript-eslint/parser": "^8.57.0",
    "eslint": "^9.34.0",
    "jest": "^30.3.0",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "tsx": "^4.20.5",
    "typescript": "^5.9.2"
  },
  "peerDependencies": {
    "typescript": ">=5.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "pnpm": {
    "overrides": {
      "minimatch@<3.1.4": "3.1.4",
      "minimatch@>=9.0.0 <9.0.7": "9.0.7",
      "glob@>=10.2.0": "10.5.0",
      "flatted@<3.4.2": "3.4.2",
      "picomatch@<2.3.2": "2.3.2",
      "picomatch@>=4.0.0 <4.0.4": "4.0.4",
      "handlebars@<4.7.9": "4.7.9"
    }
  }
}