{
  "name": "standardwebhooks",
  "version": "1.0.0",
  "description": "Standard Webhooks for TypeScript",
  "author": "Standard Webhooks",
  "repository": "https://github.com/standard-webhooks/standard-webhooks",
  "homepage": "https://github.com/standard-webhooks/standard-webhooks/tree/main/libraries/javascript",
  "type": "commonjs",
  "keywords": [
    "webhooks",
    "typescript"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "typings": "./dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "prepare": "yarn run build",
    "test": "jest",
    "prepublishOnly": "yarn lint",
    "lint:eslint": "eslint --ignore-path .lintignore --ext .js,.jsx,.ts,.tsx src",
    "lint:prettier": "prettier --ignore-path .lintignore --write src/**.ts",
    "lint": "yarn run lint:prettier && yarn run lint:eslint --max-warnings=0",
    "lint:fix": "yarn run lint:prettier --write && yarn run lint:eslint --fix"
  },
  "dependencies": {
    "@stablelib/base64": "^1.0.0",
    "fast-sha256": "^1.3.0"
  },
  "devDependencies": {
    "@stablelib/utf8": "^1.0.2",
    "@types/jest": "^29.5.11",
    "@typescript-eslint/eslint-plugin": "^7.1.0",
    "@typescript-eslint/parser": "^7.1.0",
    "@typescript-eslint/typescript-estree": "^7.0.0",
    "eslint": "^8.57.0",
    "jest": "^29.7.0",
    "prettier": "^3.2.2",
    "ts-jest": "^29.1.1",
    "typescript": "^5.3.3"
  }
}
