@deshlo/plugin-azure 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/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @deshlo/plugin-azure
2
+
3
+ Scaffold package for future Azure plugin implementations.
@@ -0,0 +1,8 @@
1
+ export interface AzurePluginPlaceholderConfig {
2
+ endpoint?: string;
3
+ }
4
+ export declare function createAzurePluginPlaceholder(config?: AzurePluginPlaceholderConfig): {
5
+ id: string;
6
+ config: AzurePluginPlaceholderConfig;
7
+ };
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,4BAA4B;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,wBAAgB,4BAA4B,CAAC,MAAM,GAAE,4BAAiC;;;EAKrF"}
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.createAzurePluginPlaceholder = createAzurePluginPlaceholder;
4
+ function createAzurePluginPlaceholder(config = {}) {
5
+ return {
6
+ id: "azure-placeholder",
7
+ config,
8
+ };
9
+ }
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "@deshlo/plugin-azure",
3
+ "version": "0.1.0",
4
+ "description": "Azure plugin scaffold for Source Inspector",
5
+ "main": "build/src/index.js",
6
+ "module": "build/src/index.js",
7
+ "types": "build/src/index.d.ts",
8
+ "sideEffects": false,
9
+ "exports": {
10
+ ".": {
11
+ "types": "./build/src/index.d.ts",
12
+ "require": "./build/src/index.js",
13
+ "import": "./build/src/index.js"
14
+ }
15
+ },
16
+ "files": [
17
+ "build"
18
+ ],
19
+ "scripts": {
20
+ "clean": "rm -rf build",
21
+ "build": "tsc -p tsconfig.json",
22
+ "test": "echo \"No tests yet\""
23
+ },
24
+ "keywords": [
25
+ "source-inspector",
26
+ "plugin",
27
+ "azure"
28
+ ],
29
+ "author": "Nikos Gerontakis",
30
+ "license": "MIT",
31
+ "dependencies": {
32
+ "@deshlo/core": "0.1.0"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "^24.10.1"
36
+ }
37
+ }