@aiqa/sdk 0.0.3 → 0.0.4

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.
@@ -3457,4 +3457,4 @@ var package_default = {
3457
3457
 
3458
3458
  // src/shared.ts
3459
3459
  var SDK_VERSION = package_default.version ?? "0.0.1";
3460
- //# sourceMappingURL=browser.mjs.map
3460
+ //# sourceMappingURL=browser.js.map
@@ -300,4 +300,4 @@ export {
300
300
  IAiqaSdk,
301
301
  Methods
302
302
  };
303
- //# sourceMappingURL=node.mjs.map
303
+ //# sourceMappingURL=node.js.map
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@aiqa/sdk",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "main": "dist/node/node.js",
5
5
  "module": "dist/node/node.js",
6
6
  "types": "dist/node/node.d.ts",
7
7
  "engines": { "node": ">=18" },
8
8
  "scripts": {
9
- "build": "tsup",
9
+ "build": "tsup && node -e \"const fs=require('fs');['dist/node/node','dist/browser/browser'].forEach(f=>{const mts=f+'.d.mts';const ts=f+'.d.ts';if(fs.existsSync(mts)){fs.renameSync(mts,ts);}});\"",
10
10
  "dev:node": "tsx src/node.ts",
11
11
  "start:node": "node dist/node/node.js",
12
12
  "serve:browser": "serve .",
File without changes