{
  "name": "@stackone/connect-sdk",
  "version": "3.7.0",
  "description": "",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.cts",
  "files": [
    "dist",
    "package.json",
    "README.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.cts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "keywords": [],
  "author": "StackOne",
  "license": "ISC",
  "dependencies": {
    "@stackone/core": "^4.0.0",
    "@stackone/defender": "*",
    "@stackone/expressions": "*",
    "@stackone/logger": "*",
    "@stackone/transport": "*",
    "@stackone/utils": "*",
    "path-to-regexp": "8.4.2",
    "yaml": "2.8.3",
    "@stackone/olap": "^1.77.0",
    "@stackone/policy": "^0.7.0",
    "@stackone/redaction": "^1.14.0"
  },
  "scripts": {
    "clean": "rimraf dist",
    "prebuild": "pnpm clean",
    "build": "tsdown --env.NODE_ENV=production --minify",
    "prebuild:dev": "pnpm clean",
    "build:dev": "tsdown --env.NODE_ENV=development",
    "code:format": "biome format ./src ./*.mjs",
    "code:format:fix": "biome format --write ./src ./*.mjs",
    "code:lint": "biome lint --error-on-warnings ./src ./*.mjs",
    "code:lint:fix": "biome lint --write ./src ./*.mjs",
    "code:check": "biome check ./src ./*.mjs",
    "code:check:fix": "biome check --write ./src ./*.mjs",
    "lint": "pnpm code:check",
    "lint:fix": "pnpm code:check:fix",
    "test": "FORCE_COLOR=1 vitest run",
    "test:watch": "FORCE_COLOR=1 vitest watch --silent",
    "test:typecheck": "tsc --noEmit --project tsconfig.tests.json",
    "publish-release": "pnpm publish --no-git-checks --access public"
  }
}