oidc-login/package.json
2023-08-26 18:55:27 -07:00

24 lines
614 B
JSON

{
"name": "@js/oidc-login",
"version": "0.1.0",
"description": "Utilities for implementing OAuth2 / OpenID Connect based login in Node.js services",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"tsc": "tsc --build",
"clean": "rm -rf ./build"
},
"publishConfig": {
"registry": "https://gitea.jbrumond.me/api/packages/templates/npm/"
},
"repository": {
"type": "git",
"url": "https://gitea.jbrumond.me/js/oidc-login.git"
},
"author": "James Brumond <https://jbrumond.me>",
"license": "ISC",
"devDependencies": {
"typescript": "^5.1.3"
}
}