@factiii/auth 0.5.4 → 0.5.6

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": "@factiii/auth",
3
- "version": "0.5.4",
3
+ "version": "0.5.6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,6 +37,11 @@
37
37
  "import": "./dist/index.mjs",
38
38
  "require": "./dist/index.js"
39
39
  },
40
+ "./drizzle": {
41
+ "types": "./dist/drizzle.d.ts",
42
+ "import": "./dist/drizzle.mjs",
43
+ "require": "./dist/drizzle.js"
44
+ },
40
45
  "./validators": {
41
46
  "types": "./dist/validators.d.ts",
42
47
  "import": "./dist/validators.mjs",
@@ -50,26 +55,8 @@
50
55
  "prisma",
51
56
  "README.md"
52
57
  ],
53
- "scripts": {
54
- "build": "tsup",
55
- "dev": "tsup --watch",
56
- "check-types": "tsc --noEmit",
57
- "lint": "eslint src",
58
- "lint:fix": "eslint src --fix",
59
- "format": "prettier --check src",
60
- "format:fix": "prettier --write src",
61
- "test": "vitest run",
62
- "test:watch": "vitest",
63
- "seed": "tsx e2e/seed.ts",
64
- "clean": "rm -rf dist node_modules/.cache .turbo",
65
- "prepublishOnly": "npm run build",
66
- "e2e": "pnpm e2e:db:up && playwright test --reporter=list; pnpm e2e:db:down",
67
- "e2e:ui": "pnpm e2e:db:up && playwright test --ui",
68
- "e2e:db:up": "docker compose -f e2e/docker-compose.yml up -d --wait && prisma generate --schema=e2e/server/schema.prisma --config=e2e/server/prisma.config.ts && prisma migrate reset --schema=e2e/server/schema.prisma --config=e2e/server/prisma.config.ts --force",
69
- "e2e:db:down": "docker compose -f e2e/docker-compose.yml down"
70
- },
71
58
  "dependencies": {
72
- "@trpc/server": "11.8.0",
59
+ "@trpc/server": "^11.8.0",
73
60
  "apple-signin-auth": "^2.0.0",
74
61
  "bcryptjs": "^2.4.3",
75
62
  "google-auth-library": "^10.5.0",
@@ -102,7 +89,7 @@
102
89
  "@prisma/adapter-pg": "^7.3.0",
103
90
  "@prisma/client": "^7.1.0",
104
91
  "@trpc/client": "^11.8.0",
105
- "@trpc/server": "11.8.0",
92
+ "@trpc/server": "^11.8.0",
106
93
  "@types/bcryptjs": "^2.4.6",
107
94
  "@types/better-sqlite3": "^7.6.13",
108
95
  "@types/jsonwebtoken": "^9.0.9",
@@ -133,16 +120,21 @@
133
120
  "engines": {
134
121
  "node": ">=18.0.0"
135
122
  },
136
- "packageManager": "pnpm@10.26.0",
137
- "pnpm": {
138
- "overrides": {
139
- "hono": ">=4.12.7",
140
- "@hono/node-server": ">=1.19.10",
141
- "minimatch": ">=9.0.7",
142
- "lodash": ">=4.17.23",
143
- "flatted": ">=3.4.0",
144
- "rollup": ">=4.59.0",
145
- "ajv": ">=6.14.0"
146
- }
123
+ "scripts": {
124
+ "build": "tsup",
125
+ "dev": "tsup --watch",
126
+ "check-types": "tsc --noEmit",
127
+ "lint": "eslint src",
128
+ "lint:fix": "eslint src --fix",
129
+ "format": "prettier --check src",
130
+ "format:fix": "prettier --write src",
131
+ "test": "vitest run",
132
+ "test:watch": "vitest",
133
+ "seed": "tsx e2e/seed.ts",
134
+ "clean": "rm -rf dist node_modules/.cache .turbo",
135
+ "e2e": "pnpm e2e:db:up && playwright test --reporter=list; pnpm e2e:db:down",
136
+ "e2e:ui": "pnpm e2e:db:up && playwright test --ui",
137
+ "e2e:db:up": "docker compose -f e2e/docker-compose.yml up -d --wait && prisma generate --schema=e2e/server/schema.prisma --config=e2e/server/prisma.config.ts && prisma migrate reset --schema=e2e/server/schema.prisma --config=e2e/server/prisma.config.ts --force",
138
+ "e2e:db:down": "docker compose -f e2e/docker-compose.yml down"
147
139
  }
148
- }
140
+ }