{
  "name": "@dapr/durabletask-js",
  "version": "1.0.0",
  "description": "A Durable Task Javascript SDK compatible with Dapr Workflow and its underlying Durable Task engine",
  "types": "./build/index.d.ts",
  "scripts": {
    "test": "jest --runInBand --detectOpenHandles",
    "test:unit": "jest test/unit --runInBand --detectOpenHandles",
    "test:unit:one": "jest test/unit --runInBand --detectOpenHandles --testNamePattern",
    "test:e2e:internal": "jest test/e2e --runInBand --detectOpenHandles",
    "test:e2e": "./scripts/test-e2e.sh",
    "test:e2e:one": "jest test/e2e --runInBand --detectOpenHandles --testNamePattern",
    "start": "ts-node --swc ./src/index.ts",
    "example": "ts-node --swc",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
    "dev": "nodemon --watch './src/**/*.ts' --exec 'ts-node --swc' ./src/index.ts",
    "pretty": "prettier --list-different \"**/*.{ts,tsx,js,jsx,json,md}\"",
    "pretty-fix": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
    "prebuild": "./scripts/prebuild.sh",
    "build": "npm install && npm run lint && npm run pretty && ./scripts/build.sh",
    "build-ci": "npm run prebuild && ./scripts/build.sh"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dapr/durabletask-js.git"
  },
  "keywords": [],
  "author": "",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dapr/durabletask-js/issues"
  },
  "homepage": "https://github.com/dapr/durabletask-js#readme",
  "devDependencies": {
    "@swc/core": "^1.3.55",
    "@swc/helpers": "^0.5.1",
    "@types/body-parser": "^1.19.1",
    "@types/express": "^4.17.15",
    "@types/google-protobuf": "^3.15.6",
    "@types/jest": "^29.5.1",
    "@types/node": "^18.16.1",
    "@types/uuid": "^8.3.1",
    "@typescript-eslint/eslint-plugin": "^5.1.0",
    "@typescript-eslint/parser": "^5.1.0",
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-header": "^3.1.1",
    "eslint-plugin-prettier": "^4.2.1",
    "grpc_tools_node_protoc_ts": "^5.3.3",
    "husky": "^8.0.1",
    "jest": "^29.5.0",
    "nodemon": "^3.1.4",
    "prettier": "^2.4.0",
    "pretty-quick": "^3.1.3",
    "readline-sync": "^1.4.10",
    "regenerator-runtime": "^0.13.11",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4"
  },
  "dependencies": {
    "@grpc/grpc-js": "^1.8.14",
    "google-protobuf": "^3.21.2"
  }
}
