@read-frog/definitions 0.0.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.
@@ -0,0 +1,3 @@
1
+ import { typedConfig } from '@repo/eslint-config/base'
2
+
3
+ export default typedConfig
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@read-frog/definitions",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "private": false,
6
+ "main": "./dist/index.js",
7
+ "dependencies": {
8
+ "zod": "^4.0.17"
9
+ },
10
+ "devDependencies": {
11
+ "tsdown": "^0.16.1",
12
+ "@repo/eslint-config": "0.0.0",
13
+ "@repo/typescript-config": "0.0.0"
14
+ },
15
+ "module": "./dist/index.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": "./dist/index.js",
19
+ "./package.json": "./package.json"
20
+ },
21
+ "scripts": {
22
+ "build:publish": "tsdown",
23
+ "lint": "eslint .",
24
+ "lint:fix": "eslint --fix"
25
+ }
26
+ }
@@ -0,0 +1 @@
1
+ export const APP_NAME = 'Read Frog'
@@ -0,0 +1,5 @@
1
+ export const AUTH_BASE_PATH = '/api/identity'
2
+
3
+ export const AUTH_COOKIE_PATTERNS = [
4
+ 'better-auth.session_token',
5
+ ] as const