{
  "name": "@oslojs/asn1",
  "type": "module",
  "version": "1.0.0",
  "description": "Encode and decode ASN.1 DER",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "module": "dist/index.js",
  "files": [
    "/dist/"
  ],
  "keywords": [
    "auth",
    "asn1",
    "der"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/oslo-project/asn1"
  },
  "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.4.5",
    "vitest": "^0.34.6"
  },
  "dependencies": {
    "@oslojs/binary": "1.0.0"
  },
  "scripts": {
    "build": "rm -rf dist/* && tsc --project tsconfig.build.json",
    "format": "prettier -w .",
    "lint": "eslint src",
    "test": "vitest run --sequence.concurrent"
  }
}