From 42afd8083144c745292e09a280804d82389fb52f Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Wed, 4 Feb 2026 09:19:03 +0100 Subject: [PATCH] Initialize project with basic structure, including .gitignore, README, package.json, and entry point --- .gitignore | 5 +++++ README.md | 4 ++++ package.json | 12 ++++++++++++ src/index.js | 1 + 4 files changed, 22 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 package.json create mode 100644 src/index.js 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