html360-gen 2.5.0 → 2.5.1

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 CHANGED
@@ -61,4 +61,5 @@ This project follows a **mirror versioning** strategy relative to the official [
61
61
  ## Credits
62
62
  - **Pannellum** — the core 360° viewer engine by Matthew Petroff.
63
63
  - **Hugin** — for the nona stitching engine.
64
- - **Google Gemini** — for co-authoring the entire project architecture and CI/CD pipelines.
64
+ - **Google Gemini** — for co-authoring the entire project architecture and CI/CD pipelines.
65
+ - **The Open Source Community** — and all the amazing dependencies that make this tool possible.
package/cli.js CHANGED
@@ -1,4 +1,4 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  import { execFileSync } from 'child_process';
3
3
  import { html360Gen } from './index.js';
4
4
 
package/index.d.ts ADDED
@@ -0,0 +1,5 @@
1
+ export interface Html360Gen {
2
+ getBinaryPath(): string;
3
+ }
4
+
5
+ export const html360Gen: Html360Gen;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "html360-gen",
3
- "version": "2.5.0",
3
+ "version": "2.5.1",
4
4
  "description": "Standalone, zero-dependency binaries for the original Pannellum `generate.py` script.",
5
5
  "keywords": [
6
6
  "pannellum",
@@ -24,12 +24,14 @@
24
24
  "author": "d_hand",
25
25
  "type": "module",
26
26
  "main": "index.js",
27
+ "types": "index.d.ts",
27
28
  "bin": {
28
29
  "html360-gen": "cli.js"
29
30
  },
30
31
  "files": [
31
32
  "postinstall.cjs",
32
33
  "index.js",
34
+ "index.d.ts",
33
35
  "cli.js",
34
36
  "README.md"
35
37
  ],