Initialize project with basic structure, including .gitignore, README, package.json, and entry point

This commit is contained in:
2026-02-04 09:19:03 +01:00
commit 42afd80831
4 changed files with 22 additions and 0 deletions

12
package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "sk-az-tools",
"version": "0.1.0",
"type": "module",
"engines": {
"node": ">=24.0.0"
},
"description": "A set of Azure and Microsoft Graph related NodeJS modules.",
"dependencies": {
"@azure/identity": "^4.13.0"
}
}