Initialize project with basic structure, including .gitignore, README, package.json, and entry point
This commit is contained in:
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Node
|
||||||
|
node_modules/
|
||||||
|
dist/
|
||||||
|
artifacts/
|
||||||
|
package-lock.json
|
||||||
4
README.md
Normal file
4
README.md
Normal file
@@ -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.
|
||||||
|
|
||||||
12
package.json
Normal file
12
package.json
Normal 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"
|
||||||
|
}
|
||||||
|
}
|
||||||
1
src/index.js
Normal file
1
src/index.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// Module entry point
|
||||||
Reference in New Issue
Block a user