@microsoft/sentinel-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@microsoft/sentinel-cli",
3
+ "version": "0.1.0",
4
+ "description": "CLI for Microsoft Sentinel deployment",
5
+ "bin": {
6
+ "sentinel": "dist/index.js"
7
+ },
8
+ "main": "dist/index.js",
9
+ "types": "dist/index.d.ts",
10
+ "files": [
11
+ "dist",
12
+ "NOTICE.txt"
13
+ ],
14
+ "dependencies": {
15
+ "@azure/identity": "^4.13.1",
16
+ "@azure/msal-node": "^3.5.3",
17
+ "@azure/msal-node-extensions": "^1.5.13",
18
+ "@jupyterlab/nbformat": "^4.4.3",
19
+ "archiver": "^7.0.1",
20
+ "axios": "^1.12.0",
21
+ "commander": "^14.0.0",
22
+ "dotenv": "^16.5.0",
23
+ "fs-extra": "^11.3.0",
24
+ "joi": "^17.13.3",
25
+ "mime-types": "^3.0.1",
26
+ "yaml": "^2.8.0",
27
+ "zod": "^3.25.36"
28
+ },
29
+ "devDependencies": {
30
+ "jest-junit": "^16.0.0",
31
+ "ts-jest": "^29.2.6",
32
+ "tsup": "^8.0.0"
33
+ },
34
+ "scripts": {
35
+ "build": "tsup",
36
+ "type-check": "tsc --noEmit",
37
+ "lint": "eslint src tests",
38
+ "lint:fix": "eslint src tests --fix",
39
+ "test": "jest --config jest.config.ts",
40
+ "test:unit": "jest --config jest.config.ts",
41
+ "test:e2e": "jest --config jest.e2e.config.ts",
42
+ "test:coverage": "jest --config jest.config.ts --coverage",
43
+ "clean": "rimraf dist",
44
+ "release": "pnpm publish",
45
+ "release:dev": "pnpm run version:dev && pnpm publish --tag dev",
46
+ "version:dev": "pnpm version prerelease --preid=dev --no-git-tag-version"
47
+ }
48
+ }