@odla-ai/chapter 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.
package/package.json ADDED
@@ -0,0 +1,115 @@
1
+ {
2
+ "name": "@odla-ai/chapter",
3
+ "version": "0.0.1",
4
+ "description": "A foundation for membership sites — one config (defineChapter) stands up a full member site (join, Stripe membership, Google booking, member area, admin, CRM) or an admin-only hub, on odla-db + Clerk + @odla-ai/crm + calendar + email, with a themeable web-component chrome engine.",
5
+ "license": "MIT",
6
+ "homepage": "https://odla.ai/docs/packages/chapter",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cory/odla-ai.git",
10
+ "directory": "packages/chapter"
11
+ },
12
+ "type": "module",
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.cjs"
21
+ },
22
+ "./worker": {
23
+ "types": "./dist/worker/index.d.ts",
24
+ "import": "./dist/worker/index.js",
25
+ "require": "./dist/worker/index.cjs"
26
+ },
27
+ "./ui": {
28
+ "types": "./dist/ui/index.d.ts",
29
+ "import": "./dist/ui/index.js"
30
+ },
31
+ "./package.json": "./package.json"
32
+ },
33
+ "files": [
34
+ "dist",
35
+ "README.md"
36
+ ],
37
+ "sideEffects": false,
38
+ "engines": {
39
+ "node": ">=20"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public",
43
+ "provenance": false
44
+ },
45
+ "keywords": [
46
+ "odla",
47
+ "odla-ai",
48
+ "chapter",
49
+ "membership",
50
+ "members",
51
+ "crm",
52
+ "worker",
53
+ "cloudflare"
54
+ ],
55
+ "scripts": {
56
+ "build": "tsup",
57
+ "clean": "rm -rf dist",
58
+ "typecheck": "tsc --noEmit",
59
+ "test": "vitest run",
60
+ "coverage": "vitest run --coverage",
61
+ "prepublishOnly": "npm run build && npm test"
62
+ },
63
+ "dependencies": {
64
+ "@odla-ai/crm": "*",
65
+ "jose": "^6.2.3"
66
+ },
67
+ "peerDependencies": {
68
+ "@odla-ai/auth-clerk": ">=0.2.0 <0.3.0",
69
+ "@odla-ai/calendar": ">=0.2.0 <0.3.0",
70
+ "@odla-ai/db": ">=0.6.0 <0.7.0",
71
+ "@odla-ai/email": ">=0.3.0 <0.4.0",
72
+ "@odla-ai/o11y": ">=2.0.0 <3.0.0",
73
+ "@odla-ai/ui": ">=0.7.0 <0.9.0",
74
+ "react": ">=18"
75
+ },
76
+ "peerDependenciesMeta": {
77
+ "@odla-ai/auth-clerk": {
78
+ "optional": true
79
+ },
80
+ "@odla-ai/db": {
81
+ "optional": true
82
+ },
83
+ "@odla-ai/calendar": {
84
+ "optional": true
85
+ },
86
+ "@odla-ai/email": {
87
+ "optional": true
88
+ },
89
+ "@odla-ai/o11y": {
90
+ "optional": true
91
+ },
92
+ "@odla-ai/ui": {
93
+ "optional": true
94
+ },
95
+ "react": {
96
+ "optional": true
97
+ }
98
+ },
99
+ "devDependencies": {
100
+ "@odla-ai/auth-clerk": "*",
101
+ "@odla-ai/calendar": "*",
102
+ "@odla-ai/db": "*",
103
+ "@odla-ai/email": "*",
104
+ "@odla-ai/o11y": "*",
105
+ "@odla-ai/ui": "*",
106
+ "@types/node": "^26.1.0",
107
+ "@types/react": "^19.2.7",
108
+ "@vitest/coverage-v8": "^4.1.9",
109
+ "react": "^19.2.7",
110
+ "react-dom": "^19.2.7",
111
+ "tsup": "^8.3.0",
112
+ "typescript": "^6.0.3",
113
+ "vitest": "^4.1.9"
114
+ }
115
+ }