{
  "name": "dexie-export-import",
  "version": "4.4.0",
  "description": "Dexie addon that adds export and import capabilities",
  "main": "dist/dexie-export-import.js",
  "module": "dist/dexie-export-import.mjs",
  "typings": "dist/dexie-export-import.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dexie/Dexie.js.git"
  },
  "just-build": {
    "default": [
      "just-build src",
      "just-build test"
    ],
    "src": [
      "tsc -p src",
      "rollup -c tools/build-configs/rollup.config.mjs"
    ],
    "test": [
      "tsc -p test [--watch 'Watching for file changes.']",
      "rollup -c tools/build-configs/rollup.config.mjs",
      "rollup -c tools/build-configs/rollup.tests.config.mjs"
    ]
  },
  "author": "david.fahlander@gmail.com",
  "license": "Apache-2.0",
  "devDependencies": {
    "@rollup/plugin-alias": "^3.1.2",
    "@types/node": "^18.11.18",
    "base64-arraybuffer-es6": "*",
    "clarinet": "dfahlander/clarinet",
    "just-build": "^0.9.24",
    "qunit": "2.10.0",
    "qunitjs": "1.23.1",
    "rollup-plugin-alias": "^2.2.0",
    "typescript": "^5.3.3",
    "typeson": "^5.8.2",
    "typeson-registry": "^1.0.0-alpha.21"
  },
  "peerDependencies": {
    "dexie": "^4.4.0"
  },
  "scripts": {
    "test": "just-build test && npx karma start test/karma.conf.js --single-run",
    "build": "just-build",
    "watch": "just-build --watch",
    "clean": "rm -rf tools/tmp dist/*.js dist/*.mjs dist/*.map dist/*.d.ts test/bundle.*",
    "test:ltcloud": "cross-env LAMBDATEST=true pnpm run test:ltTunnel & sleep 10 && pnpm run test; UNIT_STATUS=$?; kill $(cat tunnel.pid); exit $UNIT_STATUS",
    "test:ltTunnel": "node ../../test/lt-local"
  }
}