Start implementing a new user page for account and security settings

This commit is contained in:
Fabian Stamm
2023-04-09 18:20:43 +02:00
parent 1e2bb83447
commit 922ed1e813
46 changed files with 2307 additions and 443 deletions

19
_API/package.json Normal file
View File

@ -0,0 +1,19 @@
{
"name": "@hibas123/openauth-internalapi",
"private": true,
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"dev": "tsc -w"
},
"keywords": [],
"author": "Fabian Stamm <Fabian.Stamm@polizei.hessen.de>",
"license": "ISC",
"devDependencies": {
"typescript": "^5.0.2"
}
}