@phygitallabs/tapquest-core 2.9.1 → 2.13.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.
@@ -1849,4 +1849,4 @@ export {
1849
1849
  userInfoKey,
1850
1850
  wrapTextWithFont
1851
1851
  };
1852
- //# sourceMappingURL=index.js.map
1852
+ //# sourceMappingURL=index.mjs.map
package/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "@phygitallabs/tapquest-core",
3
- "version": "2.9.1",
3
+ "version": "2.13.0",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
8
- "type": "module",
9
8
  "main": "./dist/index.mjs",
10
9
  "module": "./dist/index.mjs",
11
- "types": "./dist/index.d.ts",
10
+ "types": "./dist/index.d.mts",
12
11
  "scripts": {
13
12
  "prepublishOnly": "npm run build",
14
13
  "build": "tsup",
@@ -17,7 +16,7 @@
17
16
  "dependencies": {
18
17
  "@phygitallabs/achievement": "latest",
19
18
  "@phygitallabs/api-core": "latest",
20
- "@phygitallabs/authentication": "^2.10.0",
19
+ "@phygitallabs/authentication": "latest",
21
20
  "@phygitallabs/generate-certificate": "latest",
22
21
  "@phygitallabs/helpers": "latest",
23
22
  "@phygitallabs/notification-api": "latest",
package/tsup.config.ts CHANGED
@@ -3,6 +3,7 @@ import { defineConfig } from "tsup";
3
3
  export default defineConfig({
4
4
  entry: ["src/index.ts"],
5
5
  format: ["esm"],
6
+ outExtension: () => ({ js: '.mjs' }),
6
7
  dts: true,
7
8
  splitting: false,
8
9
  sourcemap: true,
File without changes
File without changes