{
  "name": "@oslojs/jwt",
  "type": "module",
  "version": "0.2.0",
  "description": "Parse and encoding JSON web tokens",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "module": "dist/index.js",
  "files": [
    "/dist/"
  ],
  "keywords": [
    "auth",
    "jwt"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/oslo-project/jwt"
  },
  "author": "pilcrowOnPaper",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.8.6",
    "@typescript-eslint/eslint-plugin": "^6.7.5",
    "@typescript-eslint/parser": "^6.7.5",
    "auri": "^2.0.0",
    "eslint": "^8.51.0",
    "prettier": "^3.0.3",
    "typescript": "^5.2.2",
    "vitest": "^0.34.6"
  },
  "dependencies": {
    "@oslojs/encoding": "0.4.1"
  },
  "scripts": {
    "build": "rm -rf dist/* && tsc --project tsconfig.build.json",
    "format": "prettier -w .",
    "lint": "eslint src",
    "test": "vitest run --sequence.concurrent"
  }
}