{
  "name": "oauth2-server-grant-type-apple",
  "version": "0.5.0",
  "description": "Apple grant type for oauth2-server",
  "main": "dist/oauth2-server-grant-type-apple.js",
  "module": "dist/oauth2-server-grant-type-apple.modern.js",
  "types": "dist/index.d.ts",
  "source": "./src/index.ts",
  "files": [
    "dist",
    "src"
  ],
  "repository": "https://github.com/jpalumickas/node-oauth2-server-grant-type-apple",
  "author": {
    "name": "Justas Palumickas",
    "email": "jpalumickas@gmail.com",
    "url": "https://jpalumickas.com"
  },
  "license": "MIT",
  "dependencies": {
    "jsonwebtoken": "^8.5.1",
    "jwks-rsa": "^2.1.4"
  },
  "peerDependencies": {
    "oauth2-server": "3.x"
  },
  "devDependencies": {
    "@types/jsonwebtoken": "^8.5.8",
    "@types/oauth2-server": "^3.0.13",
    "microbundle": "^0.15.0",
    "oauth2-server": "^3.1.1",
    "prettier": "^2.7.1",
    "rimraf": "^3.0.2"
  },
  "scripts": {
    "build": "rimraf dist && microbundle --strict --target node -i src/index.ts -o dist -f modern,cjs --no-compress",
    "dev": "microbundle watch"
  },
  "prettier": {
    "printWidth": 80,
    "semi": true,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "keywords": [
    "oauth",
    "oauth2",
    "oauth2-server",
    "grant-type",
    "apple",
    "jwt",
    "ios"
  ]
}
