commit 42afd8083144c745292e09a280804d82389fb52f Author: Slawomir Koszewski Date: Wed Feb 4 09:19:03 2026 +0100 Initialize project with basic structure, including .gitignore, README, package.json, and entry point diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ac6af65 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +# Node +node_modules/ +dist/ +artifacts/ +package-lock.json \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..40c2214 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# A set of Azure related NodeJS modules + +This repository contains a collection of NodeJS modules that facilitate interaction with Azure and Graph authentication and management of selected Entra ID objects and Azure resources. + diff --git a/package.json b/package.json new file mode 100644 index 0000000..c0e80ea --- /dev/null +++ b/package.json @@ -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" + } +} diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..84e73c3 --- /dev/null +++ b/src/index.js @@ -0,0 +1 @@ +// Module entry point