@civic/auth 0.1.5-beta.3 → 0.1.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@civic/auth",
3
- "version": "0.1.5-beta.3",
3
+ "version": "0.1.5",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -62,6 +62,20 @@
62
62
  }
63
63
  }
64
64
  },
65
+ "scripts": {
66
+ "prebuild": "rm -rf dist && pnpm generate-version",
67
+ "build": "pnpm build:cjs && pnpm build:esm",
68
+ "build:cjs": "tsc -p tsconfig.cjs.json --noEmit false && tsc-alias -p tsconfig.cjs.json",
69
+ "build:esm": "tsc -p tsconfig.esm.json --noEmit false && tsc-alias -p tsconfig.esm.json",
70
+ "prepublishOnly": "pnpm generate-version && node ../../etc/scripts/prompt-changelog.js && pnpm build",
71
+ "dev": "tsc --watch",
72
+ "pretest": "pnpm generate-version",
73
+ "test": "vitest",
74
+ "lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
75
+ "lint:fix": "pnpm lint --fix",
76
+ "test:update": "vitest --update",
77
+ "generate-version": "npx tsx ./generateVersion.ts"
78
+ },
65
79
  "dependencies": {
66
80
  "debug": "^4.3.7",
67
81
  "eventemitter3": "^5.0.1",
@@ -71,6 +85,8 @@
71
85
  "uuid": "^10.0.0"
72
86
  },
73
87
  "devDependencies": {
88
+ "@repo/eslint-config": "workspace:*",
89
+ "@repo/typescript-config": "workspace:*",
74
90
  "@rollup/plugin-typescript": "^12.1.1",
75
91
  "@testing-library/jest-dom": "^6.5.0",
76
92
  "@testing-library/react": "16.0.1",
@@ -94,24 +110,9 @@
94
110
  "tsx": "^4.19.1",
95
111
  "vite": "^5",
96
112
  "vite-plugin-dts": "^4.2.3",
97
- "vitest": "^2.1.8",
98
- "@repo/typescript-config": "0.0.0",
99
- "@repo/eslint-config": "0.0.0"
113
+ "vitest": "^2.1.8"
100
114
  },
101
115
  "optionalDependency": {
102
116
  "next": "^14"
103
- },
104
- "scripts": {
105
- "prebuild": "rm -rf dist && pnpm generate-version",
106
- "build": "pnpm build:cjs && pnpm build:esm",
107
- "build:cjs": "tsc -p tsconfig.cjs.json --noEmit false && tsc-alias -p tsconfig.cjs.json",
108
- "build:esm": "tsc -p tsconfig.esm.json --noEmit false && tsc-alias -p tsconfig.esm.json",
109
- "dev": "tsc --watch",
110
- "pretest": "pnpm generate-version",
111
- "test": "vitest",
112
- "lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
113
- "lint:fix": "pnpm lint --fix",
114
- "test:update": "vitest --update",
115
- "generate-version": "npx tsx ./generateVersion.ts"
116
117
  }
117
- }
118
+ }