{
  "name": "@dimjs/bridge",
  "version": "2.1.8",
  "license": "MIT",
  "author": {
    "name": "Yingchun Tian",
    "url": "https://github.com/tianyingchun"
  },
  "sideEffects": false,
  "type": "module",
  "modularImport": true,
  "modularIgnoreDir": true,
  "modularLibraryDir": "dist",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./index.js"
    },
    "./ready": {
      "types": "./dist/ready/index.d.ts",
      "import": "./dist/ready/index.js"
    },
    "./core": {
      "types": "./dist/core/index.d.ts",
      "import": "./dist/core/index.js"
    },
    "./errors": {
      "types": "./dist/errors/index.d.ts",
      "import": "./dist/errors/index.js"
    },
    "./fabric-auth": {
      "types": "./dist/fabric-auth/index.d.ts",
      "import": "./dist/fabric-auth/index.js"
    },
    "./fabric-error": {
      "types": "./dist/fabric-error/index.d.ts",
      "import": "./dist/fabric-error/index.js"
    },
    "./fabric-http": {
      "types": "./dist/fabric-http/index.d.ts",
      "import": "./dist/fabric-http/index.js"
    },
    "./fabric-location": {
      "types": "./dist/fabric-location/index.d.ts",
      "import": "./dist/fabric-location/index.js"
    },
    "./fabric-map": {
      "types": "./dist/fabric-map/index.d.ts",
      "import": "./dist/fabric-map/index.js"
    },
    "./fabric-mark": {
      "types": "./dist/fabric-mark/index.d.ts",
      "import": "./dist/fabric-mark/index.js"
    },
    "./fabric-photo": {
      "types": "./dist/fabric-photo/index.d.ts",
      "import": "./dist/fabric-photo/index.js"
    },
    "./fabric-share": {
      "types": "./dist/fabric-share/index.d.ts",
      "import": "./dist/fabric-share/index.js"
    },
    "./fabric-storage": {
      "types": "./dist/fabric-storage/index.d.ts",
      "import": "./dist/fabric-storage/index.js"
    },
    "./fabric-toast": {
      "types": "./dist/fabric-toast/index.d.ts",
      "import": "./dist/fabric-toast/index.js"
    },
    "./fabric-toolbar": {
      "types": "./dist/fabric-toolbar/index.d.ts",
      "import": "./dist/fabric-toolbar/index.js"
    },
    "./fabric-utils": {
      "types": "./dist/fabric-utils/index.d.ts",
      "import": "./dist/fabric-utils/index.js"
    },
    "./fabric-webview": {
      "types": "./dist/fabric-webview/index.d.ts",
      "import": "./dist/fabric-webview/index.js"
    },
    "./utils": {
      "types": "./dist/utils/index.d.ts",
      "import": "./dist/utils/index.js"
    },
    "./dist/*": {
      "types": "./dist/index.d.ts",
      "import": "./dist/*"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "bin/",
    "dist/",
    "index.js",
    "README.md",
    "CHANGELOG.md",
    "package.json"
  ],
  "scripts": {
    "build": "npx flatjs-forge build -d -c",
    "?build-release": "When https://github.com/atlassian/changesets/issues/432 has a solution we can remove this trick",
    "build-release": "yarn build && rimraf ./_release && yarn pack && mkdir ./_release && tar zxvf ./package.tgz --directory ./_release && rm ./package.tgz",
    "clean": "rimraf --no-glob ./dist ./coverage ./tsconfig.tsbuildinfo",
    "lint": "eslint . --cache --cache-location ../../.cache/eslint/bridge.eslintcache",
    "test": "run-s test-unit",
    "test-unit": "vitest run --passWithNoTests",
    "test-unit-watch": "vitest watch --ui",
    "fix-all-files": "eslint . --fix",
    "typecheck": "tsc --project ./tsconfig.json --noEmit"
  },
  "dependencies": {
    "@dimjs/lang": "2.1.1",
    "@dimjs/utils": "2.1.7"
  },
  "devDependencies": {
    "@flatjs/cli": "3.0.9",
    "@hyperse/eslint-config-hyperse": "^1.5.0",
    "@types/node": "25.0.3",
    "eslint": "9.39.2",
    "npm-run-all": "4.1.5",
    "prettier": "^3.7.4",
    "rimraf": "6.1.2",
    "typescript": "5.9.3",
    "vite-tsconfig-paths": "6.0.3",
    "vitest": "4.0.16"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public",
    "directory": "_release/package"
  }
}