digiid-ts
Version:
A modern TypeScript implementation of the DigiID authentication protocol.
90 lines (89 loc) • 2.18 kB
JSON
{
"name": "digiid-ts",
"version": "3.0.0",
"description": "A modern TypeScript implementation of the DigiID authentication protocol.",
"main": "dist/digiid-ts.umd.js",
"module": "dist/digiid-ts.es.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/digiid-ts.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/digiid-ts.umd.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prepublishOnly": "npm run test && npm run build"
},
"keywords": [
"digiid",
"digibyte",
"authentication",
"crypto",
"typescript"
],
"author": "Pawel Zelawski",
"license": "MIT",
"homepage": "https://pzelawski.com/",
"repository": {
"type": "git",
"url": "git+https://github.com/pawelzelawski/digiid-ts.git"
},
"bugs": {
"url": "https://github.com/pawelzelawski/digiid-ts/issues"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.9.1",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"@vitest/coverage-v8": "^4.1.7",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vite": "^8.0.14",
"vite-plugin-dts": "^5.0.1",
"vitest": "^4.1.7"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0"
},
"overrides": {
"glob": "^10.5.0",
"brace-expansion": "^2.0.3",
"rollup": "^4.59.0",
"minimatch": "^10.2.3",
"lodash": "^4.18.0",
"flatted": "^3.4.2",
"picomatch": "^4.0.4",
"fast-uri": "^3.1.2",
"postcss": "^8.5.10"
}
}