@civic/auth 0.1.4-beta.3 → 0.1.4-beta.5

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/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@civic/auth",
3
- "version": "0.1.4-beta.3",
3
+ "version": "0.1.4-beta.5",
4
4
  "type": "module",
5
- "module": "dist/index.js",
6
- "main": "dist/index.ts",
5
+ "main": "./dist/cjs/index.js",
6
+ "module": "./dist/esm/index.js",
7
+ "types": "./dist/esm/index.d.ts",
7
8
  "files": [
8
9
  "dist",
9
10
  "README.md",
@@ -103,7 +104,7 @@
103
104
  "next": "^14"
104
105
  },
105
106
  "scripts": {
106
- "prebuild": "rm -rf .turbo dist && pnpm generate-version",
107
+ "prebuild": "rm -rf dist && pnpm generate-version",
107
108
  "build": "pnpm build:cjs && pnpm build:esm",
108
109
  "build:cjs": "tsc -p tsconfig.cjs.json --noEmit false && tsc-alias -p tsconfig.cjs.json",
109
110
  "build:esm": "tsc -p tsconfig.esm.json --noEmit false && tsc-alias -p tsconfig.esm.json",