@civic/auth 0.1.5 → 0.1.6-beta.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@civic/auth",
3
- "version": "0.1.5",
3
+ "version": "0.1.6-beta.0",
4
4
  "type": "module",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -62,20 +62,6 @@
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
- },
79
65
  "dependencies": {
80
66
  "debug": "^4.3.7",
81
67
  "eventemitter3": "^5.0.1",
@@ -85,8 +71,6 @@
85
71
  "uuid": "^10.0.0"
86
72
  },
87
73
  "devDependencies": {
88
- "@repo/eslint-config": "workspace:*",
89
- "@repo/typescript-config": "workspace:*",
90
74
  "@rollup/plugin-typescript": "^12.1.1",
91
75
  "@testing-library/jest-dom": "^6.5.0",
92
76
  "@testing-library/react": "16.0.1",
@@ -110,9 +94,24 @@
110
94
  "tsx": "^4.19.1",
111
95
  "vite": "^5",
112
96
  "vite-plugin-dts": "^4.2.3",
113
- "vitest": "^2.1.8"
97
+ "vitest": "^2.1.8",
98
+ "@repo/typescript-config": "0.0.0",
99
+ "@repo/eslint-config": "0.0.0"
114
100
  },
115
101
  "optionalDependency": {
116
102
  "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"
117
116
  }
118
- }
117
+ }