{
  "name": "@instantdb/platform",
  "version": "1.0.22",
  "description": "Instant's platform package for managing Instant apps.",
  "license": "Apache-2.0",
  "homepage": "https://github.com/instantdb/instant/tree/main/client/packages/platform",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/instantdb/instant.git",
    "directory": "client/packages/platform"
  },
  "type": "module",
  "main": "./dist/commonjs/index.js",
  "types": "./dist/commonjs/index.d.ts",
  "module": "./dist/esm/index.js",
  "unpkg": "standalone/index.umd.js",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/esm/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/commonjs/index.d.ts",
        "default": "./dist/commonjs/index.js"
      }
    }
  },
  "tshy": {
    "selfLink": false,
    "main": true,
    "module": true,
    "project": "./tsconfig.json",
    "exports": {
      "./package.json": "./package.json",
      ".": "./src/index.ts"
    }
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.17.4",
    "@babel/core": "^7.17.9",
    "@babel/preset-env": "^7.16.11",
    "@babel/types": "^7.27.6",
    "@prettier/sync": "^0.5.5",
    "@types/node": "^18.11.18",
    "@types/uuid": "^10.0.0",
    "@types/websocket": "^1.0.5",
    "fake-indexeddb": "^6.0.0",
    "tshy": "^3.0.2",
    "typescript": "^5.9.3",
    "vite": "^5.2.0",
    "vitest": "^1.6.0"
  },
  "dependencies": {
    "@babel/parser": "^8.0.0-beta.0",
    "@babel/types": "^8.0.0-beta.0",
    "@instantdb/core": "1.0.22",
    "@instantdb/version": "1.0.22"
  },
  "scripts": {
    "test": "vitest",
    "test:ci": "vitest run",
    "check": "tsc --noEmit",
    "check-exports": "attw --pack .",
    "dev": "tsc --watch --preserveWatchOutput -p tsconfig.dev.json",
    "clean": "rm -rf dist",
    "build": "rm -rf dist; npm run build:tshy && npm run build:standalone && npm run check-exports",
    "build:tshy": "tshy",
    "build:standalone": "vite build",
    "publish-package": "pnpm pack && npm publish *.tgz --access public"
  }
}