{
  "name": "zotero-lib",
  "version": "1.1.0",
  "description": "",
  "main": "build/zotero-lib.js",
  "bin": {
    "zotero-lib": "build/zotero-cli.js"
  },
  "files": [
    "build/*"
  ],
  "scripts": {
    "start": "node ./build/zotero-cli.js",
    "dev": "ts-node ./src/zotero-cli.ts",
    "lib": "node ./build/zotero-lib.js",
    "prisma:generate": "prisma generate",
    "test:cli_to_javascript": "node ./tests/test_cli_to_javascript.js",
    "test": "jest",
    "legacy:test": "node ./tests/*.js",
    "legacy:test_create": "node ./tests/test_create.js",
    "legacy:test_item": "node ./tests/test_item.js",
    "legacy:test_update": "node ./tests/test_update.js",
    "copy:schema": "copyfiles -u 1 prisma/schema.prisma build/prisma/",
    "build": "rimraf build/ && npm run prisma:generate && tsc && npm run copy:schema",
    "prepublish": "npm run build",
    "prepack": "npm run build",
    "publish:patch": "npm version patch; npm publish; git push --tags",
    "publish:minor": "npm version minor; npm publish; git push --tags",
    "publish:major": "npm version major; npm publish; git push --tags",
    "release": "standard-version",
    "docs": "typedoc"
  },
  "standard-version": {
    "skip": {
      "tag": true
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/OpenDevEd/zotero-lib.git"
  },
  "author": "opendeved",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/OpenDevEd/zotero-lib/issues"
  },
  "homepage": "https://github.com/OpenDevEd/zotero-lib#readme",
  "dependencies": {
    "@iarna/toml": "^2.2.5",
    "@inquirer/prompts": "^3.0.3",
    "@npmcli/fs": "^3.1.0",
    "@prisma/client": "^5.3.1",
    "@sentry/node": "^7.63.0",
    "@types/node": "^14.14.14",
    "ajv": "^6.12.6",
    "argparse": "^2.0.1",
    "axios": "^1.6.8",
    "chalk": "^5.3.0",
    "dotenv": "^8.2.0",
    "figlet": "^1.6.0",
    "form-data": "^4.0.0",
    "got": "^12.5.1",
    "he": "^1.2.0",
    "http-link-header": "^1.0.3",
    "lodash": "^4.17.21",
    "node-cron": "^3.0.0",
    "node-libcurl": "^3.0.0",
    "object-hash": "^3.0.0",
    "sqlite3": "^5.0.2",
    "standard-version": "^9.3.1",
    "string-similarity": "^4.0.4",
    "sugar": "^2.0.6",
    "ts-dotenv": "^0.8.3",
    "tslib": "^2.2.0",
    "winston": "^3.6.0",
    "ws": "^8.14.2",
    "xml-escape": "^1.1.0",
    "xml-js": "^1.6.11"
  },
  "devDependencies": {
    "@types/argparse": "^2.0.10",
    "@types/jest": "^27.4.0",
    "@typescript-eslint/eslint-plugin": "^4.22.1",
    "@typescript-eslint/parser": "^4.22.1",
    "copyfiles": "^2.4.1",
    "eslint": "^7.26.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-prettier": "^3.4.0",
    "jest": "^27.5.1",
    "prettier": "^2.2.1",
    "prisma": "^5.3.1",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.1.3",
    "ts-node": "^10.9.1",
    "typedoc": "^0.22.11",
    "typescript": "^4.5.5"
  }
}
