xpine 0.0.8 → 0.0.9

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.
@@ -92,4 +92,9 @@ declare module "index" {
92
92
  export * from "src/auth";
93
93
  export * from "src/util/html";
94
94
  }
95
- //# sourceMappingURL=index.d.ts.map
95
+ //# sourceMappingURL=index.d.ts.map
96
+ declare module 'xpine' {
97
+ import main = require('index');
98
+ export = main;
99
+ }
100
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xpine",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "main": "dist/index.js",
5
5
  "dependencies": {
6
6
  "@aws-sdk/client-secrets-manager": "^3.758.0",
@@ -26,7 +26,7 @@
26
26
  },
27
27
  "scripts": {
28
28
  "build": "tsx ./src/scripts/build-module.ts && npm run build:types",
29
- "build:types": "npx tsc --declaration index.ts --emitDeclarationOnly --declarationMap --skipLibCheck --esModuleInterop --allowImportingTsExtensions --target esnext --moduleResolution NodeNext --module NodeNext --outFile dist/lib/index.d.ts"
29
+ "build:types": "sh ./src/scripts/build-types.sh"
30
30
  },
31
31
  "bin": {
32
32
  "xpine-build": "dist/src/scripts/xpine-build.js",