@read-frog/definitions 0.1.2 → 0.1.4

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,25 +1,27 @@
1
1
  {
2
2
  "name": "@read-frog/definitions",
3
3
  "type": "module",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "private": false,
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./dist/index.js",
9
+ "require": "./dist/index.js",
9
10
  "types": "./dist/index.d.ts"
10
11
  }
11
12
  },
12
13
  "main": "./dist/index.js",
13
14
  "types": "./dist/index.d.ts",
14
15
  "files": [
15
- "dist"
16
+ "dist",
17
+ "src"
16
18
  ],
17
19
  "dependencies": {
18
20
  "zod": "^4.3.6"
19
21
  },
20
22
  "devDependencies": {
21
- "tsdown": "^0.20.3",
22
- "@repo/eslint-config": "0.0.0",
23
+ "tsdown": "^0.21.8",
24
+ "@repo/eslint-config": "0.0.1",
23
25
  "@repo/tsdown-config": "0.0.0",
24
26
  "@repo/typescript-config": "0.0.0"
25
27
  },
@@ -29,6 +31,7 @@
29
31
  "link:packages": "pnpm link --global",
30
32
  "unlink:packages": "pnpm unlink --global",
31
33
  "build:publish": "tsdown",
34
+ "type-check": "tsc --noEmit",
32
35
  "lint": "eslint .",
33
36
  "lint:fix": "eslint --fix"
34
37
  }
@@ -0,0 +1 @@
1
+ export const APP_NAME = "Read Frog"
@@ -0,0 +1,6 @@
1
+ export const AUTH_BASE_PATH = "/api/identity"
2
+ export const ORPC_PREFIX = "/api/rpc"
3
+
4
+ export const AUTH_COOKIE_PATTERNS = [
5
+ "better-auth.session_token",
6
+ ] as const
@@ -0,0 +1,9 @@
1
+ export const BETA_FEATURES = {
2
+ notebase: "notebase",
3
+ } as const
4
+
5
+ export const BETA_FEATURE_KEYS = [BETA_FEATURES.notebase] as const
6
+
7
+ export type BetaFeatureKey = (typeof BETA_FEATURE_KEYS)[number]
8
+
9
+ export const NOTEBASE_BETA_FEATURE_KEY = BETA_FEATURES.notebase
@@ -0,0 +1,2 @@
1
+ export const COLUMN_MIN_WIDTH = 100
2
+ export const COLUMN_MAX_WIDTH = 500