@civic/auth 0.1.5-beta.0 → 0.1.5-beta.1

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.0",
3
+ "version": "0.1.5-beta.1",
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
  "@tanstack/react-query": "^5.56.2",
67
81
  "clsx": "^2.1.1",
@@ -73,6 +87,8 @@
73
87
  "uuid": "^10.0.0"
74
88
  },
75
89
  "devDependencies": {
90
+ "@repo/eslint-config": "workspace:*",
91
+ "@repo/typescript-config": "workspace:*",
76
92
  "@rollup/plugin-typescript": "^12.1.1",
77
93
  "@testing-library/jest-dom": "^6.5.0",
78
94
  "@testing-library/react": "16.0.1",
@@ -96,24 +112,9 @@
96
112
  "tsx": "^4.19.1",
97
113
  "vite": "^5",
98
114
  "vite-plugin-dts": "^4.2.3",
99
- "vitest": "^2.1.8",
100
- "@repo/eslint-config": "0.0.0",
101
- "@repo/typescript-config": "0.0.0"
115
+ "vitest": "^2.1.8"
102
116
  },
103
117
  "optionalDependency": {
104
118
  "next": "^14"
105
- },
106
- "scripts": {
107
- "prebuild": "rm -rf dist && pnpm generate-version",
108
- "build": "pnpm build:cjs && pnpm build:esm",
109
- "build:cjs": "tsc -p tsconfig.cjs.json --noEmit false && tsc-alias -p tsconfig.cjs.json",
110
- "build:esm": "tsc -p tsconfig.esm.json --noEmit false && tsc-alias -p tsconfig.esm.json",
111
- "dev": "tsc --watch",
112
- "pretest": "pnpm generate-version",
113
- "test": "vitest",
114
- "lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
115
- "lint:fix": "pnpm lint --fix",
116
- "test:update": "vitest --update",
117
- "generate-version": "npx tsx ./generateVersion.ts"
118
119
  }
119
- }
120
+ }