@holoscript/radio-astronomy-plugin 1.0.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
+ # @holoscript/radio-astronomy-plugin legacy compatibility
2
+
3
+ This package preserves the 1.0.0 registry coordinate required by older HoloScript dependency graphs.
@@ -0,0 +1,7 @@
1
+ export interface LegacyPluginCompatibility {
2
+ name: string;
3
+ version: string;
4
+ compatibility: string;
5
+ }
6
+ export declare const radioAstronomyPlugin: LegacyPluginCompatibility;
7
+ export default radioAstronomyPlugin;
package/dist/index.js ADDED
@@ -0,0 +1,7 @@
1
+ export const radioAstronomyPlugin = {
2
+ name: "@holoscript/radio-astronomy-plugin",
3
+ version: '1.0.0',
4
+ compatibility: 'legacy-registry-resolution'
5
+ };
6
+
7
+ export default radioAstronomyPlugin;
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@holoscript/radio-astronomy-plugin",
3
+ "version": "1.0.0",
4
+ "description": "Legacy compatibility package for @holoscript/radio-astronomy-plugin",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "files": [
9
+ "dist",
10
+ "README.md"
11
+ ],
12
+ "peerDependencies": {
13
+ "@holoscript/core": ">=7.0.0"
14
+ },
15
+ "license": "MIT"
16
+ }