oidc-login/package.json
James Brumond 68f80be0dd
All checks were successful
Build and test / build-and-test (18.x) (push) Successful in 15s
Build and test / build-and-test (20.x) (push) Successful in 15s
start building base utilities
2023-08-26 20:46:59 -07:00

25 lines
644 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": {
"@types/node": "^20.5.6",
"typescript": "^5.1.3"
}
}