{
  "name": "@internetarchive/search-service",
  "version": "2.7.2",
  "description": "A search service for the Internet Archive",
  "license": "AGPL-3.0-only",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "start": "concurrently --kill-others --names tsc,web-dev-server \"npm run tsc:watch\" \"web-dev-server --app-index demo/index.html --node-resolve --open --watch\"",
    "tsc:watch": "tsc --watch",
    "docs": "typedoc ./index.ts",
    "prepare": "tsc",
    "lint:eslint": "eslint --ext .ts,.html . --ignore-path .gitignore",
    "format:eslint": "eslint --ext .ts,.html . --fix --ignore-path .gitignore",
    "lint:prettier": "prettier \"**/*.js\" \"**/*.ts\" --check --ignore-path .gitignore",
    "format:prettier": "prettier \"**/*.js\" \"**/*.ts\" --write --ignore-path .gitignore",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "format": "npm run format:eslint && npm run format:prettier",
    "circular": "madge --circular --extensions ts .",
    "test": "tsc && npm run lint && npm run circular && web-test-runner --coverage",
    "test:watch": "web-test-runner --watch",
    "codecov": "npx codecov",
    "ghpages:build": "rimraf ghpages && npm run prepare && vite build",
    "ghpages:publish": "npm run ghpages:prepare -e $(git branch --show-current)",
    "ghpages:prepare": "npm run ghpages:build && touch ghpages/.nojekyll && npm run ghpages:generate",
    "ghpages:generate": "gh-pages -t -d ghpages -m \"Build for $(git log --pretty=format:\"%h %an %ai %s\" -n1) [skip ci]\""
  },
  "devDependencies": {
    "@internetarchive/field-parsers": "^1.0.0",
    "@open-wc/eslint-config": "^4.2.0",
    "@open-wc/testing": "^4.0.0",
    "@types/mocha": "^10.0.10",
    "@types/node": "13.11.1",
    "@typescript-eslint/eslint-plugin": "^4.16.1",
    "@typescript-eslint/parser": "^4.16.1",
    "@web/dev-server": "^0.0.12",
    "@web/test-runner": "^0.19.0",
    "concurrently": "^5.1.0",
    "eslint": "^7.21.0",
    "eslint-config-prettier": "^6.11.0",
    "husky": "^1.0.0",
    "lint-staged": "^10.0.0",
    "lit": "^2.2.2",
    "madge": "^3.12.0",
    "prettier": "^2.0.4",
    "rimraf": "^3.0.2",
    "sinon": "^12.0.1",
    "tslib": "^1.14.1",
    "typedoc": "^0.20.29",
    "typescript": "^4.2.2",
    "vite": "^2.9.13"
  },
  "eslintConfig": {
    "extends": [
      "@open-wc/eslint-config",
      "eslint-config-prettier"
    ]
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  },
  "dependencies": {
    "@internetarchive/iaux-item-metadata": "^1.1.0",
    "@internetarchive/result-type": "^0.0.1",
    "typescript-memoize": "^1.1.1"
  }
}
