@layerzerolabs/vm-tooling-stellar 0.2.8

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.
@@ -0,0 +1,14 @@
1
+ 'use strict';
2
+
3
+ var _37LOW5OS_cjs = require('../37LOW5OS.cjs');
4
+ var JBSG7YXG_cjs = require('../JBSG7YXG.cjs');
5
+ var vmTooling = require('@layerzerolabs/vm-tooling');
6
+
7
+ // src/scripts/generate-github-matrix.ts
8
+ JBSG7YXG_cjs.init_cjs_shims();
9
+ vmTooling.runGithubMatrixGenerator(_37LOW5OS_cjs.images, "tools/vm-tooling-stellar").catch((error) => {
10
+ console.error(error);
11
+ process.exit(1);
12
+ });
13
+ //# sourceMappingURL=generate-github-matrix.cjs.map
14
+ //# sourceMappingURL=generate-github-matrix.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/scripts/generate-github-matrix.ts"],"names":["init_cjs_shims","runGithubMatrixGenerator","images","catch","error","console","process","exit"],"mappings":";;;;;;;AAAAA,2BAAA,EAAA;AAIAC,kCAAAA,CAAyBC,oBAAAA,EAAQ,0BAAA,CAAA,CAA4BC,KAAAA,CAAM,CAACC,KAAAA,KAAAA;AAChEC,EAAAA,OAAAA,CAAQD,MAAMA,KAAAA,CAAAA;AACdE,EAAAA,OAAAA,CAAQC,KAAK,CAAA,CAAA;AACjB,CAAA,CAAA","file":"generate-github-matrix.cjs","sourcesContent":["import { runGithubMatrixGenerator } from '@layerzerolabs/vm-tooling';\n\nimport { images } from '../config';\n\nrunGithubMatrixGenerator(images, 'tools/vm-tooling-stellar').catch((error: unknown) => {\n console.error(error);\n process.exit(1);\n});\n"]}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=generate-github-matrix.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-github-matrix.d.ts","sourceRoot":"","sources":["../../src/scripts/generate-github-matrix.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ import { images } from '../GYPLPHFZ.js';
2
+ import { init_esm_shims } from '../PHXMTVK6.js';
3
+ import { runGithubMatrixGenerator } from '@layerzerolabs/vm-tooling';
4
+
5
+ // src/scripts/generate-github-matrix.ts
6
+ init_esm_shims();
7
+ runGithubMatrixGenerator(images, "tools/vm-tooling-stellar").catch((error) => {
8
+ console.error(error);
9
+ process.exit(1);
10
+ });
11
+ //# sourceMappingURL=generate-github-matrix.js.map
12
+ //# sourceMappingURL=generate-github-matrix.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/scripts/generate-github-matrix.ts"],"names":["runGithubMatrixGenerator","images","catch","error","console","process","exit"],"mappings":";;;;;AAAA,cAAA,EAAA;AAIAA,wBAAAA,CAAyBC,MAAAA,EAAQ,0BAAA,CAAA,CAA4BC,KAAAA,CAAM,CAACC,KAAAA,KAAAA;AAChEC,EAAAA,OAAAA,CAAQD,MAAMA,KAAAA,CAAAA;AACdE,EAAAA,OAAAA,CAAQC,KAAK,CAAA,CAAA;AACjB,CAAA,CAAA","file":"generate-github-matrix.js","sourcesContent":["import { runGithubMatrixGenerator } from '@layerzerolabs/vm-tooling';\n\nimport { images } from '../config';\n\nrunGithubMatrixGenerator(images, 'tools/vm-tooling-stellar').catch((error: unknown) => {\n console.error(error);\n process.exit(1);\n});\n"]}
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@layerzerolabs/vm-tooling-stellar",
3
+ "private": false,
4
+ "license": "MIT",
5
+ "type": "module",
6
+ "exports": {
7
+ "types": "./dist/index.d.ts",
8
+ "require": "./dist/index.cjs",
9
+ "import": "./dist/index.js",
10
+ "default": "./dist/index.cjs"
11
+ },
12
+ "main": "./dist/index.cjs",
13
+ "module": "./dist/index.js",
14
+ "types": "./dist/index.d.ts",
15
+ "bin": {
16
+ "lz-tool": "./bin/lz-tool.js"
17
+ },
18
+ "files": [
19
+ "dist/**/*",
20
+ "bin/**/*"
21
+ ],
22
+ "dependencies": {
23
+ "@layerzerolabs/vm-tooling": "0.2.8"
24
+ },
25
+ "devDependencies": {
26
+ "tsup": "^8.4.0",
27
+ "tsx": "^4.19.3",
28
+ "typescript": "^5.8.2",
29
+ "vitest": "^3.2.3",
30
+ "@layerzerolabs/tsup-configuration": "0.2.8",
31
+ "@layerzerolabs/typescript-configuration": "0.2.8"
32
+ },
33
+ "publishConfig": {
34
+ "access": "restricted",
35
+ "registry": "https://registry.npmjs.org/"
36
+ },
37
+ "version": "0.2.8",
38
+ "scripts": {
39
+ "build": "tsup",
40
+ "generate-github-matrix": "tsx src/scripts/generate-github-matrix.ts",
41
+ "lint": "eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)",
42
+ "test": "vitest --run"
43
+ }
44
+ }