@contractspec/example.team-hub 1.58.0 → 1.60.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.
Files changed (1) hide show
  1. package/package.json +222 -36
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.team-hub",
3
- "version": "1.58.0",
3
+ "version": "1.60.0",
4
4
  "description": "Team Hub example with spaces, tasks, rituals, and announcements",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
@@ -19,46 +19,232 @@
19
19
  "typecheck": "tsc --noEmit"
20
20
  },
21
21
  "dependencies": {
22
- "@contractspec/lib.schema": "1.58.0",
23
- "@contractspec/lib.contracts": "1.58.0"
22
+ "@contractspec/lib.schema": "1.60.0",
23
+ "@contractspec/lib.contracts": "1.60.0"
24
24
  },
25
25
  "devDependencies": {
26
- "@contractspec/tool.typescript": "1.58.0",
26
+ "@contractspec/tool.typescript": "1.60.0",
27
27
  "typescript": "^5.9.3",
28
- "@contractspec/tool.bun": "1.57.0"
28
+ "@contractspec/tool.bun": "1.59.0"
29
29
  },
30
30
  "exports": {
31
- ".": "./src/index.ts",
32
- "./announcement": "./src/announcement/index.ts",
33
- "./announcement/announcement.operations": "./src/announcement/announcement.operations.ts",
34
- "./announcement/announcement.schema": "./src/announcement/announcement.schema.ts",
35
- "./announcement/index": "./src/announcement/index.ts",
36
- "./docs": "./src/docs/index.ts",
37
- "./docs/index": "./src/docs/index.ts",
38
- "./docs/team-hub.docblock": "./src/docs/team-hub.docblock.ts",
39
- "./entities": "./src/entities/index.ts",
40
- "./entities/index": "./src/entities/index.ts",
41
- "./events": "./src/events.ts",
42
- "./example": "./src/example.ts",
43
- "./handlers": "./src/handlers/index.ts",
44
- "./handlers/index": "./src/handlers/index.ts",
45
- "./presentations": "./src/presentations.ts",
46
- "./presentations/index": "./src/presentations/index.ts",
47
- "./presentations/team-hub.presentation": "./src/presentations/team-hub.presentation.ts",
48
- "./ritual": "./src/ritual/index.ts",
49
- "./ritual/index": "./src/ritual/index.ts",
50
- "./ritual/ritual.operations": "./src/ritual/ritual.operations.ts",
51
- "./ritual/ritual.schema": "./src/ritual/ritual.schema.ts",
52
- "./space": "./src/space/index.ts",
53
- "./space/index": "./src/space/index.ts",
54
- "./space/space.operations": "./src/space/space.operations.ts",
55
- "./space/space.schema": "./src/space/space.schema.ts",
56
- "./task": "./src/task/index.ts",
57
- "./task/index": "./src/task/index.ts",
58
- "./task/task.operations": "./src/task/task.operations.ts",
59
- "./task/task.schema": "./src/task/task.schema.ts",
60
- "./team-hub.capability": "./src/team-hub.capability.ts",
61
- "./team-hub.feature": "./src/team-hub.feature.ts"
31
+ ".": {
32
+ "types": "./dist/index.d.ts",
33
+ "bun": "./dist/index.js",
34
+ "node": "./dist/node/index.mjs",
35
+ "browser": "./dist/browser/index.js",
36
+ "default": "./dist/index.js"
37
+ },
38
+ "./announcement": {
39
+ "types": "./dist/announcement/index.d.ts",
40
+ "bun": "./dist/announcement/index.js",
41
+ "node": "./dist/node/announcement/index.mjs",
42
+ "browser": "./dist/browser/announcement/index.js",
43
+ "default": "./dist/announcement/index.js"
44
+ },
45
+ "./announcement/announcement.operations": {
46
+ "types": "./dist/announcement/announcement.operations.d.ts",
47
+ "bun": "./dist/announcement/announcement.operations.js",
48
+ "node": "./dist/node/announcement/announcement.operations.mjs",
49
+ "browser": "./dist/browser/announcement/announcement.operations.js",
50
+ "default": "./dist/announcement/announcement.operations.js"
51
+ },
52
+ "./announcement/announcement.schema": {
53
+ "types": "./dist/announcement/announcement.schema.d.ts",
54
+ "bun": "./dist/announcement/announcement.schema.js",
55
+ "node": "./dist/node/announcement/announcement.schema.mjs",
56
+ "browser": "./dist/browser/announcement/announcement.schema.js",
57
+ "default": "./dist/announcement/announcement.schema.js"
58
+ },
59
+ "./announcement/index": {
60
+ "types": "./dist/announcement/index.d.ts",
61
+ "bun": "./dist/announcement/index.js",
62
+ "node": "./dist/node/announcement/index.mjs",
63
+ "browser": "./dist/browser/announcement/index.js",
64
+ "default": "./dist/announcement/index.js"
65
+ },
66
+ "./docs": {
67
+ "types": "./dist/docs/index.d.ts",
68
+ "bun": "./dist/docs/index.js",
69
+ "node": "./dist/node/docs/index.mjs",
70
+ "browser": "./dist/browser/docs/index.js",
71
+ "default": "./dist/docs/index.js"
72
+ },
73
+ "./docs/index": {
74
+ "types": "./dist/docs/index.d.ts",
75
+ "bun": "./dist/docs/index.js",
76
+ "node": "./dist/node/docs/index.mjs",
77
+ "browser": "./dist/browser/docs/index.js",
78
+ "default": "./dist/docs/index.js"
79
+ },
80
+ "./docs/team-hub.docblock": {
81
+ "types": "./dist/docs/team-hub.docblock.d.ts",
82
+ "bun": "./dist/docs/team-hub.docblock.js",
83
+ "node": "./dist/node/docs/team-hub.docblock.mjs",
84
+ "browser": "./dist/browser/docs/team-hub.docblock.js",
85
+ "default": "./dist/docs/team-hub.docblock.js"
86
+ },
87
+ "./entities": {
88
+ "types": "./dist/entities/index.d.ts",
89
+ "bun": "./dist/entities/index.js",
90
+ "node": "./dist/node/entities/index.mjs",
91
+ "browser": "./dist/browser/entities/index.js",
92
+ "default": "./dist/entities/index.js"
93
+ },
94
+ "./entities/index": {
95
+ "types": "./dist/entities/index.d.ts",
96
+ "bun": "./dist/entities/index.js",
97
+ "node": "./dist/node/entities/index.mjs",
98
+ "browser": "./dist/browser/entities/index.js",
99
+ "default": "./dist/entities/index.js"
100
+ },
101
+ "./events": {
102
+ "types": "./dist/events.d.ts",
103
+ "bun": "./dist/events.js",
104
+ "node": "./dist/node/events.mjs",
105
+ "browser": "./dist/browser/events.js",
106
+ "default": "./dist/events.js"
107
+ },
108
+ "./example": {
109
+ "types": "./dist/example.d.ts",
110
+ "bun": "./dist/example.js",
111
+ "node": "./dist/node/example.mjs",
112
+ "browser": "./dist/browser/example.js",
113
+ "default": "./dist/example.js"
114
+ },
115
+ "./handlers": {
116
+ "types": "./dist/handlers/index.d.ts",
117
+ "bun": "./dist/handlers/index.js",
118
+ "node": "./dist/node/handlers/index.mjs",
119
+ "browser": "./dist/browser/handlers/index.js",
120
+ "default": "./dist/handlers/index.js"
121
+ },
122
+ "./handlers/index": {
123
+ "types": "./dist/handlers/index.d.ts",
124
+ "bun": "./dist/handlers/index.js",
125
+ "node": "./dist/node/handlers/index.mjs",
126
+ "browser": "./dist/browser/handlers/index.js",
127
+ "default": "./dist/handlers/index.js"
128
+ },
129
+ "./presentations": {
130
+ "types": "./dist/presentations.d.ts",
131
+ "bun": "./dist/presentations.js",
132
+ "node": "./dist/node/presentations.mjs",
133
+ "browser": "./dist/browser/presentations.js",
134
+ "default": "./dist/presentations.js"
135
+ },
136
+ "./presentations/index": {
137
+ "types": "./dist/presentations/index.d.ts",
138
+ "bun": "./dist/presentations/index.js",
139
+ "node": "./dist/node/presentations/index.mjs",
140
+ "browser": "./dist/browser/presentations/index.js",
141
+ "default": "./dist/presentations/index.js"
142
+ },
143
+ "./presentations/team-hub.presentation": {
144
+ "types": "./dist/presentations/team-hub.presentation.d.ts",
145
+ "bun": "./dist/presentations/team-hub.presentation.js",
146
+ "node": "./dist/node/presentations/team-hub.presentation.mjs",
147
+ "browser": "./dist/browser/presentations/team-hub.presentation.js",
148
+ "default": "./dist/presentations/team-hub.presentation.js"
149
+ },
150
+ "./ritual": {
151
+ "types": "./dist/ritual/index.d.ts",
152
+ "bun": "./dist/ritual/index.js",
153
+ "node": "./dist/node/ritual/index.mjs",
154
+ "browser": "./dist/browser/ritual/index.js",
155
+ "default": "./dist/ritual/index.js"
156
+ },
157
+ "./ritual/index": {
158
+ "types": "./dist/ritual/index.d.ts",
159
+ "bun": "./dist/ritual/index.js",
160
+ "node": "./dist/node/ritual/index.mjs",
161
+ "browser": "./dist/browser/ritual/index.js",
162
+ "default": "./dist/ritual/index.js"
163
+ },
164
+ "./ritual/ritual.operations": {
165
+ "types": "./dist/ritual/ritual.operations.d.ts",
166
+ "bun": "./dist/ritual/ritual.operations.js",
167
+ "node": "./dist/node/ritual/ritual.operations.mjs",
168
+ "browser": "./dist/browser/ritual/ritual.operations.js",
169
+ "default": "./dist/ritual/ritual.operations.js"
170
+ },
171
+ "./ritual/ritual.schema": {
172
+ "types": "./dist/ritual/ritual.schema.d.ts",
173
+ "bun": "./dist/ritual/ritual.schema.js",
174
+ "node": "./dist/node/ritual/ritual.schema.mjs",
175
+ "browser": "./dist/browser/ritual/ritual.schema.js",
176
+ "default": "./dist/ritual/ritual.schema.js"
177
+ },
178
+ "./space": {
179
+ "types": "./dist/space/index.d.ts",
180
+ "bun": "./dist/space/index.js",
181
+ "node": "./dist/node/space/index.mjs",
182
+ "browser": "./dist/browser/space/index.js",
183
+ "default": "./dist/space/index.js"
184
+ },
185
+ "./space/index": {
186
+ "types": "./dist/space/index.d.ts",
187
+ "bun": "./dist/space/index.js",
188
+ "node": "./dist/node/space/index.mjs",
189
+ "browser": "./dist/browser/space/index.js",
190
+ "default": "./dist/space/index.js"
191
+ },
192
+ "./space/space.operations": {
193
+ "types": "./dist/space/space.operations.d.ts",
194
+ "bun": "./dist/space/space.operations.js",
195
+ "node": "./dist/node/space/space.operations.mjs",
196
+ "browser": "./dist/browser/space/space.operations.js",
197
+ "default": "./dist/space/space.operations.js"
198
+ },
199
+ "./space/space.schema": {
200
+ "types": "./dist/space/space.schema.d.ts",
201
+ "bun": "./dist/space/space.schema.js",
202
+ "node": "./dist/node/space/space.schema.mjs",
203
+ "browser": "./dist/browser/space/space.schema.js",
204
+ "default": "./dist/space/space.schema.js"
205
+ },
206
+ "./task": {
207
+ "types": "./dist/task/index.d.ts",
208
+ "bun": "./dist/task/index.js",
209
+ "node": "./dist/node/task/index.mjs",
210
+ "browser": "./dist/browser/task/index.js",
211
+ "default": "./dist/task/index.js"
212
+ },
213
+ "./task/index": {
214
+ "types": "./dist/task/index.d.ts",
215
+ "bun": "./dist/task/index.js",
216
+ "node": "./dist/node/task/index.mjs",
217
+ "browser": "./dist/browser/task/index.js",
218
+ "default": "./dist/task/index.js"
219
+ },
220
+ "./task/task.operations": {
221
+ "types": "./dist/task/task.operations.d.ts",
222
+ "bun": "./dist/task/task.operations.js",
223
+ "node": "./dist/node/task/task.operations.mjs",
224
+ "browser": "./dist/browser/task/task.operations.js",
225
+ "default": "./dist/task/task.operations.js"
226
+ },
227
+ "./task/task.schema": {
228
+ "types": "./dist/task/task.schema.d.ts",
229
+ "bun": "./dist/task/task.schema.js",
230
+ "node": "./dist/node/task/task.schema.mjs",
231
+ "browser": "./dist/browser/task/task.schema.js",
232
+ "default": "./dist/task/task.schema.js"
233
+ },
234
+ "./team-hub.capability": {
235
+ "types": "./dist/team-hub.capability.d.ts",
236
+ "bun": "./dist/team-hub.capability.js",
237
+ "node": "./dist/node/team-hub.capability.mjs",
238
+ "browser": "./dist/browser/team-hub.capability.js",
239
+ "default": "./dist/team-hub.capability.js"
240
+ },
241
+ "./team-hub.feature": {
242
+ "types": "./dist/team-hub.feature.d.ts",
243
+ "bun": "./dist/team-hub.feature.js",
244
+ "node": "./dist/node/team-hub.feature.mjs",
245
+ "browser": "./dist/browser/team-hub.feature.js",
246
+ "default": "./dist/team-hub.feature.js"
247
+ }
62
248
  },
63
249
  "files": [
64
250
  "dist",