{
  "name": "tessio",
  "version": "4.0.4",
  "author": "Rafal Okninski <hpn777@gmail.com>",
  "scripts": {
    "prepare": "npm run build",
    "build": "tsc",
    "build:watch": "tsc --watch",
    "build:browser": "browserify -r ./dist/export.js:tessio  --exclude \"./commandPort\" > ./tessio.js",
    "build:browser:min": "browserify -r ./dist/export.js:tessio  --exclude \"./commandPort\" | uglifyjs > ./tessio_min.js",
    "test": "npm run build && npx ts-node -P tsconfig.tests.json tests/index.ts",
    "test:perf": "npm run build && npx ts-node -P tsconfig.tests.json tests/performanceBenchmark.ts",
    "test:sql-converter": "npm run build && npx ts-node -P tsconfig.tests.json tests/sqlToTessioConverter.ts",
    "test:docker": "docker compose up --build --exit-code-from tests tests"
  },
  "dependencies": {
    "ioredis": "^5.2.3",
    "linq": "^3.2.0",
    "lodash": "^4.17.15",
    "md5.js": "^1.3.5",
    "rxjs": "6.3.3"
  },
  "devDependencies": {
    "@types/benchmark": "^2.1.5",
    "@types/lodash": "^4.17.20",
    "@types/node": "^18.19.127",
    "@types/tape": "^5.8.1",
    "benchmark": "^2.1.4",
    "browserify": "^16.5.0",
    "flat": "^4.1.0",
    "tape": "4.9.1",
    "ts-node": "^10.9.2",
    "typescript": "^4.9.5",
    "uglify-js": "^3.17.4"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "lib": "dist/lib",
    "test": "tests"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hpn777/tesseract.git"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hpn777/tesseract/issues"
  },
  "homepage": "https://github.com/hpn777/tesseract#readme"
}
