{
  "name": "@ably-labs/spaces",
  "version": "0.0.13",
  "description": "",
  "main": "dist/cjs/index.js",
  "module": "dist/mjs/index.js",
  "types": "dist/mjs/index.d.ts",
  "unpkg": "dist/iife/index.bundle.js",
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "eslint --fix .",
    "format": "prettier --write --ignore-path .gitignore src demo",
    "format:check": "prettier --check --ignore-path .gitignore src demo",
    "test": "vitest run",
    "watch": "vitest watch",
    "coverage": "vitest run --coverage",
    "build": "npm run build:mjs && npm run build:cjs && npm run build:iife",
    "build:mjs": "npx tsc --project tsconfig.mjs.json && cp res/package.mjs.json dist/mjs/package.json",
    "build:cjs": "npx tsc --project tsconfig.cjs.json && cp res/package.cjs.json dist/cjs/package.json",
    "build:iife": "rm -rf dist/iife && npx tsc --project tsconfig.iife.json && rollup -c",
    "prepare": "husky install",
    "examples:locks": "ts-node ./examples/locks.ts"
  },
  "exports": {
    "import": "./dist/mjs/index.js",
    "require": "./dist/cjs/index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ably-labs/spaces.git"
  },
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": ""
  },
  "homepage": "https://github.com/ably-labs/spaces",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [],
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^5.51.0",
    "@typescript-eslint/parser": "^5.51.0",
    "@vitest/coverage-c8": "^0.28.4",
    "eslint": "^8.33.0",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-jsdoc": "^39.8.0",
    "eslint-plugin-security": "^1.7.1",
    "husky": "^8.0.0",
    "mock-socket": "^9.1.5",
    "prettier": "^2.8.3",
    "rollup": "^3.28.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.9.5",
    "vitest": "^0.29.8"
  },
  "dependencies": {
    "ably": "^1.2.43",
    "nanoid": "^4.0.2"
  }
}
