@contractspec/example.saas-boilerplate 1.57.0 → 1.59.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 (283) hide show
  1. package/.turbo/turbo-build.log +160 -180
  2. package/.turbo/turbo-prebuild.log +1 -0
  3. package/CHANGELOG.md +39 -0
  4. package/dist/billing/billing.entity.d.ts +40 -45
  5. package/dist/billing/billing.entity.d.ts.map +1 -1
  6. package/dist/billing/billing.entity.js +110 -118
  7. package/dist/billing/billing.enum.d.ts +2 -7
  8. package/dist/billing/billing.enum.d.ts.map +1 -1
  9. package/dist/billing/billing.enum.js +17 -24
  10. package/dist/billing/billing.event.d.ts +67 -73
  11. package/dist/billing/billing.event.d.ts.map +1 -1
  12. package/dist/billing/billing.event.js +84 -146
  13. package/dist/billing/billing.handler.d.ts +59 -62
  14. package/dist/billing/billing.handler.d.ts.map +1 -1
  15. package/dist/billing/billing.handler.js +140 -49
  16. package/dist/billing/billing.operations.d.ts +138 -144
  17. package/dist/billing/billing.operations.d.ts.map +1 -1
  18. package/dist/billing/billing.operations.js +273 -175
  19. package/dist/billing/billing.presentation.d.ts +2 -7
  20. package/dist/billing/billing.presentation.d.ts.map +1 -1
  21. package/dist/billing/billing.presentation.js +51 -57
  22. package/dist/billing/billing.schema.d.ts +159 -164
  23. package/dist/billing/billing.schema.d.ts.map +1 -1
  24. package/dist/billing/billing.schema.js +112 -204
  25. package/dist/billing/index.d.ts +11 -8
  26. package/dist/billing/index.d.ts.map +1 -0
  27. package/dist/billing/index.js +689 -9
  28. package/dist/browser/billing/billing.entity.js +113 -0
  29. package/dist/browser/billing/billing.enum.js +19 -0
  30. package/dist/browser/billing/billing.event.js +90 -0
  31. package/dist/browser/billing/billing.handler.js +148 -0
  32. package/dist/browser/billing/billing.operations.js +278 -0
  33. package/dist/browser/billing/billing.presentation.js +52 -0
  34. package/dist/browser/billing/billing.schema.js +121 -0
  35. package/dist/browser/billing/index.js +688 -0
  36. package/dist/browser/dashboard/dashboard.presentation.js +52 -0
  37. package/dist/browser/dashboard/index.js +52 -0
  38. package/dist/browser/docs/index.js +93 -0
  39. package/dist/browser/docs/saas-boilerplate.docblock.js +93 -0
  40. package/dist/browser/example.js +39 -0
  41. package/dist/browser/handlers/index.js +358 -0
  42. package/dist/browser/handlers/saas.handlers.js +134 -0
  43. package/dist/browser/index.js +3340 -0
  44. package/dist/browser/presentations/index.js +290 -0
  45. package/dist/browser/project/index.js +790 -0
  46. package/dist/browser/project/project.entity.js +77 -0
  47. package/dist/browser/project/project.enum.js +18 -0
  48. package/dist/browser/project/project.event.js +103 -0
  49. package/dist/browser/project/project.handler.js +178 -0
  50. package/dist/browser/project/project.operations.js +372 -0
  51. package/dist/browser/project/project.presentation.js +177 -0
  52. package/dist/browser/project/project.schema.js +134 -0
  53. package/dist/browser/saas-boilerplate.feature.js +88 -0
  54. package/dist/browser/seeders/index.js +20 -0
  55. package/dist/browser/settings/index.js +75 -0
  56. package/dist/browser/settings/settings.entity.js +74 -0
  57. package/dist/browser/settings/settings.enum.js +11 -0
  58. package/dist/browser/shared/mock-data.js +104 -0
  59. package/dist/browser/shared/overlay-types.js +0 -0
  60. package/dist/browser/tests/operations.test-spec.js +112 -0
  61. package/dist/browser/ui/SaasDashboard.js +988 -0
  62. package/dist/browser/ui/SaasProjectList.js +162 -0
  63. package/dist/browser/ui/SaasSettingsPanel.js +145 -0
  64. package/dist/browser/ui/hooks/index.js +159 -0
  65. package/dist/browser/ui/hooks/useProjectList.js +66 -0
  66. package/dist/browser/ui/hooks/useProjectMutations.js +91 -0
  67. package/dist/browser/ui/index.js +1808 -0
  68. package/dist/browser/ui/modals/CreateProjectModal.js +153 -0
  69. package/dist/browser/ui/modals/ProjectActionsModal.js +335 -0
  70. package/dist/browser/ui/modals/index.js +487 -0
  71. package/dist/browser/ui/overlays/demo-overlays.js +61 -0
  72. package/dist/browser/ui/overlays/index.js +61 -0
  73. package/dist/browser/ui/renderers/index.js +675 -0
  74. package/dist/browser/ui/renderers/project-list.markdown.js +499 -0
  75. package/dist/browser/ui/renderers/project-list.renderer.js +177 -0
  76. package/dist/dashboard/dashboard.presentation.d.ts +2 -7
  77. package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
  78. package/dist/dashboard/dashboard.presentation.js +51 -53
  79. package/dist/dashboard/index.d.ts +5 -2
  80. package/dist/dashboard/index.d.ts.map +1 -0
  81. package/dist/dashboard/index.js +53 -3
  82. package/dist/docs/index.d.ts +2 -1
  83. package/dist/docs/index.d.ts.map +1 -0
  84. package/dist/docs/index.js +94 -1
  85. package/dist/docs/saas-boilerplate.docblock.d.ts +2 -1
  86. package/dist/docs/saas-boilerplate.docblock.d.ts.map +1 -0
  87. package/dist/docs/saas-boilerplate.docblock.js +45 -51
  88. package/dist/example.d.ts +2 -6
  89. package/dist/example.d.ts.map +1 -1
  90. package/dist/example.js +38 -50
  91. package/dist/handlers/index.d.ts +7 -4
  92. package/dist/handlers/index.d.ts.map +1 -0
  93. package/dist/handlers/index.js +358 -4
  94. package/dist/handlers/saas.handlers.d.ts +60 -59
  95. package/dist/handlers/saas.handlers.d.ts.map +1 -1
  96. package/dist/handlers/saas.handlers.js +127 -140
  97. package/dist/index.d.ts +15 -45
  98. package/dist/index.d.ts.map +1 -1
  99. package/dist/index.js +3335 -75
  100. package/dist/node/billing/billing.entity.js +113 -0
  101. package/dist/node/billing/billing.enum.js +19 -0
  102. package/dist/node/billing/billing.event.js +90 -0
  103. package/dist/node/billing/billing.handler.js +148 -0
  104. package/dist/node/billing/billing.operations.js +278 -0
  105. package/dist/node/billing/billing.presentation.js +52 -0
  106. package/dist/node/billing/billing.schema.js +121 -0
  107. package/dist/node/billing/index.js +688 -0
  108. package/dist/node/dashboard/dashboard.presentation.js +52 -0
  109. package/dist/node/dashboard/index.js +52 -0
  110. package/dist/node/docs/index.js +93 -0
  111. package/dist/node/docs/saas-boilerplate.docblock.js +93 -0
  112. package/dist/node/example.js +39 -0
  113. package/dist/node/handlers/index.js +358 -0
  114. package/dist/node/handlers/saas.handlers.js +134 -0
  115. package/dist/node/index.js +3340 -0
  116. package/dist/node/presentations/index.js +290 -0
  117. package/dist/node/project/index.js +790 -0
  118. package/dist/node/project/project.entity.js +77 -0
  119. package/dist/node/project/project.enum.js +18 -0
  120. package/dist/node/project/project.event.js +103 -0
  121. package/dist/node/project/project.handler.js +178 -0
  122. package/dist/node/project/project.operations.js +372 -0
  123. package/dist/node/project/project.presentation.js +177 -0
  124. package/dist/node/project/project.schema.js +134 -0
  125. package/dist/node/saas-boilerplate.feature.js +88 -0
  126. package/dist/node/seeders/index.js +20 -0
  127. package/dist/node/settings/index.js +75 -0
  128. package/dist/node/settings/settings.entity.js +74 -0
  129. package/dist/node/settings/settings.enum.js +11 -0
  130. package/dist/node/shared/mock-data.js +104 -0
  131. package/dist/node/shared/overlay-types.js +0 -0
  132. package/dist/node/tests/operations.test-spec.js +112 -0
  133. package/dist/node/ui/SaasDashboard.js +988 -0
  134. package/dist/node/ui/SaasProjectList.js +162 -0
  135. package/dist/node/ui/SaasSettingsPanel.js +145 -0
  136. package/dist/node/ui/hooks/index.js +159 -0
  137. package/dist/node/ui/hooks/useProjectList.js +66 -0
  138. package/dist/node/ui/hooks/useProjectMutations.js +91 -0
  139. package/dist/node/ui/index.js +1808 -0
  140. package/dist/node/ui/modals/CreateProjectModal.js +153 -0
  141. package/dist/node/ui/modals/ProjectActionsModal.js +335 -0
  142. package/dist/node/ui/modals/index.js +487 -0
  143. package/dist/node/ui/overlays/demo-overlays.js +61 -0
  144. package/dist/node/ui/overlays/index.js +61 -0
  145. package/dist/node/ui/renderers/index.js +675 -0
  146. package/dist/node/ui/renderers/project-list.markdown.js +499 -0
  147. package/dist/node/ui/renderers/project-list.renderer.js +177 -0
  148. package/dist/presentations/index.d.ts +13 -14
  149. package/dist/presentations/index.d.ts.map +1 -1
  150. package/dist/presentations/index.js +289 -15
  151. package/dist/project/index.d.ts +11 -8
  152. package/dist/project/index.d.ts.map +1 -0
  153. package/dist/project/index.js +791 -9
  154. package/dist/project/project.entity.d.ts +23 -28
  155. package/dist/project/project.entity.d.ts.map +1 -1
  156. package/dist/project/project.entity.js +75 -82
  157. package/dist/project/project.enum.d.ts +2 -7
  158. package/dist/project/project.enum.d.ts.map +1 -1
  159. package/dist/project/project.enum.js +16 -23
  160. package/dist/project/project.event.d.ts +69 -75
  161. package/dist/project/project.event.d.ts.map +1 -1
  162. package/dist/project/project.event.js +95 -156
  163. package/dist/project/project.handler.d.ts +44 -47
  164. package/dist/project/project.handler.d.ts.map +1 -1
  165. package/dist/project/project.handler.js +168 -71
  166. package/dist/project/project.operations.d.ts +341 -347
  167. package/dist/project/project.operations.d.ts.map +1 -1
  168. package/dist/project/project.operations.js +366 -253
  169. package/dist/project/project.presentation.d.ts +2 -7
  170. package/dist/project/project.presentation.d.ts.map +1 -1
  171. package/dist/project/project.presentation.js +174 -61
  172. package/dist/project/project.schema.d.ts +191 -196
  173. package/dist/project/project.schema.d.ts.map +1 -1
  174. package/dist/project/project.schema.js +125 -205
  175. package/dist/saas-boilerplate.feature.d.ts +1 -6
  176. package/dist/saas-boilerplate.feature.d.ts.map +1 -1
  177. package/dist/saas-boilerplate.feature.js +87 -206
  178. package/dist/seeders/index.d.ts +4 -8
  179. package/dist/seeders/index.d.ts.map +1 -1
  180. package/dist/seeders/index.js +18 -16
  181. package/dist/settings/index.d.ts +6 -3
  182. package/dist/settings/index.d.ts.map +1 -0
  183. package/dist/settings/index.js +75 -3
  184. package/dist/settings/settings.entity.d.ts +23 -28
  185. package/dist/settings/settings.entity.d.ts.map +1 -1
  186. package/dist/settings/settings.entity.js +72 -75
  187. package/dist/settings/settings.enum.d.ts +1 -6
  188. package/dist/settings/settings.enum.d.ts.map +1 -1
  189. package/dist/settings/settings.enum.js +10 -19
  190. package/dist/shared/mock-data.d.ts +74 -77
  191. package/dist/shared/mock-data.d.ts.map +1 -1
  192. package/dist/shared/mock-data.js +102 -135
  193. package/dist/shared/overlay-types.d.ts +25 -28
  194. package/dist/shared/overlay-types.d.ts.map +1 -1
  195. package/dist/shared/overlay-types.js +1 -0
  196. package/dist/tests/operations.test-spec.d.ts +4 -9
  197. package/dist/tests/operations.test-spec.d.ts.map +1 -1
  198. package/dist/tests/operations.test-spec.js +108 -118
  199. package/dist/ui/SaasDashboard.d.ts +1 -6
  200. package/dist/ui/SaasDashboard.d.ts.map +1 -1
  201. package/dist/ui/SaasDashboard.js +977 -286
  202. package/dist/ui/SaasProjectList.d.ts +4 -11
  203. package/dist/ui/SaasProjectList.d.ts.map +1 -1
  204. package/dist/ui/SaasProjectList.js +159 -72
  205. package/dist/ui/SaasSettingsPanel.d.ts +1 -6
  206. package/dist/ui/SaasSettingsPanel.d.ts.map +1 -1
  207. package/dist/ui/SaasSettingsPanel.js +142 -134
  208. package/dist/ui/hooks/index.d.ts +3 -3
  209. package/dist/ui/hooks/index.d.ts.map +1 -0
  210. package/dist/ui/hooks/index.js +158 -4
  211. package/dist/ui/hooks/useProjectList.d.ts +26 -30
  212. package/dist/ui/hooks/useProjectList.d.ts.map +1 -1
  213. package/dist/ui/hooks/useProjectList.js +63 -71
  214. package/dist/ui/hooks/useProjectMutations.d.ts +20 -24
  215. package/dist/ui/hooks/useProjectMutations.d.ts.map +1 -1
  216. package/dist/ui/hooks/useProjectMutations.js +88 -142
  217. package/dist/ui/index.d.ts +8 -14
  218. package/dist/ui/index.d.ts.map +1 -0
  219. package/dist/ui/index.js +1809 -15
  220. package/dist/ui/modals/CreateProjectModal.d.ts +10 -19
  221. package/dist/ui/modals/CreateProjectModal.d.ts.map +1 -1
  222. package/dist/ui/modals/CreateProjectModal.js +150 -135
  223. package/dist/ui/modals/ProjectActionsModal.d.ts +20 -33
  224. package/dist/ui/modals/ProjectActionsModal.d.ts.map +1 -1
  225. package/dist/ui/modals/ProjectActionsModal.js +333 -289
  226. package/dist/ui/modals/index.d.ts +3 -3
  227. package/dist/ui/modals/index.d.ts.map +1 -0
  228. package/dist/ui/modals/index.js +487 -3
  229. package/dist/ui/overlays/demo-overlays.d.ts +10 -8
  230. package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
  231. package/dist/ui/overlays/demo-overlays.js +60 -68
  232. package/dist/ui/overlays/index.d.ts +2 -2
  233. package/dist/ui/overlays/index.d.ts.map +1 -0
  234. package/dist/ui/overlays/index.js +62 -3
  235. package/dist/ui/renderers/index.d.ts +3 -3
  236. package/dist/ui/renderers/index.d.ts.map +1 -0
  237. package/dist/ui/renderers/index.js +675 -3
  238. package/dist/ui/renderers/project-list.markdown.d.ts +15 -14
  239. package/dist/ui/renderers/project-list.markdown.d.ts.map +1 -1
  240. package/dist/ui/renderers/project-list.markdown.js +496 -146
  241. package/dist/ui/renderers/project-list.renderer.d.ts +6 -7
  242. package/dist/ui/renderers/project-list.renderer.d.ts.map +1 -1
  243. package/dist/ui/renderers/project-list.renderer.js +176 -15
  244. package/package.json +508 -98
  245. package/tsdown.config.js +1 -2
  246. package/.turbo/turbo-build$colon$bundle.log +0 -180
  247. package/dist/billing/billing.entity.js.map +0 -1
  248. package/dist/billing/billing.enum.js.map +0 -1
  249. package/dist/billing/billing.event.js.map +0 -1
  250. package/dist/billing/billing.handler.js.map +0 -1
  251. package/dist/billing/billing.operations.js.map +0 -1
  252. package/dist/billing/billing.presentation.js.map +0 -1
  253. package/dist/billing/billing.schema.js.map +0 -1
  254. package/dist/dashboard/dashboard.presentation.js.map +0 -1
  255. package/dist/docs/saas-boilerplate.docblock.js.map +0 -1
  256. package/dist/example.js.map +0 -1
  257. package/dist/handlers/saas.handlers.js.map +0 -1
  258. package/dist/index.js.map +0 -1
  259. package/dist/presentations/index.js.map +0 -1
  260. package/dist/project/project.entity.js.map +0 -1
  261. package/dist/project/project.enum.js.map +0 -1
  262. package/dist/project/project.event.js.map +0 -1
  263. package/dist/project/project.handler.js.map +0 -1
  264. package/dist/project/project.operations.js.map +0 -1
  265. package/dist/project/project.presentation.js.map +0 -1
  266. package/dist/project/project.schema.js.map +0 -1
  267. package/dist/saas-boilerplate.feature.js.map +0 -1
  268. package/dist/seeders/index.js.map +0 -1
  269. package/dist/settings/settings.entity.js.map +0 -1
  270. package/dist/settings/settings.enum.js.map +0 -1
  271. package/dist/shared/mock-data.js.map +0 -1
  272. package/dist/tests/operations.test-spec.js.map +0 -1
  273. package/dist/ui/SaasDashboard.js.map +0 -1
  274. package/dist/ui/SaasProjectList.js.map +0 -1
  275. package/dist/ui/SaasSettingsPanel.js.map +0 -1
  276. package/dist/ui/hooks/useProjectList.js.map +0 -1
  277. package/dist/ui/hooks/useProjectMutations.js.map +0 -1
  278. package/dist/ui/modals/CreateProjectModal.js.map +0 -1
  279. package/dist/ui/modals/ProjectActionsModal.js.map +0 -1
  280. package/dist/ui/overlays/demo-overlays.js.map +0 -1
  281. package/dist/ui/renderers/project-list.markdown.js.map +0 -1
  282. package/dist/ui/renderers/project-list.renderer.js.map +0 -1
  283. package/tsconfig.tsbuildinfo +0 -1
package/package.json CHANGED
@@ -1,126 +1,536 @@
1
1
  {
2
2
  "name": "@contractspec/example.saas-boilerplate",
3
- "version": "1.57.0",
3
+ "version": "1.59.0",
4
4
  "description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
- ".": "./dist/index.js",
9
- "./billing": "./dist/billing/index.js",
10
- "./billing/billing.entity": "./dist/billing/billing.entity.js",
11
- "./billing/billing.enum": "./dist/billing/billing.enum.js",
12
- "./billing/billing.event": "./dist/billing/billing.event.js",
13
- "./billing/billing.handler": "./dist/billing/billing.handler.js",
14
- "./billing/billing.operations": "./dist/billing/billing.operations.js",
15
- "./billing/billing.presentation": "./dist/billing/billing.presentation.js",
16
- "./billing/billing.schema": "./dist/billing/billing.schema.js",
17
- "./dashboard": "./dist/dashboard/index.js",
18
- "./dashboard/dashboard.presentation": "./dist/dashboard/dashboard.presentation.js",
19
- "./docs": "./dist/docs/index.js",
20
- "./docs/saas-boilerplate.docblock": "./dist/docs/saas-boilerplate.docblock.js",
21
- "./example": "./dist/example.js",
22
- "./handlers": "./dist/handlers/index.js",
23
- "./handlers/saas.handlers": "./dist/handlers/saas.handlers.js",
24
- "./presentations": "./dist/presentations/index.js",
25
- "./project": "./dist/project/index.js",
26
- "./project/project.entity": "./dist/project/project.entity.js",
27
- "./project/project.enum": "./dist/project/project.enum.js",
28
- "./project/project.event": "./dist/project/project.event.js",
29
- "./project/project.handler": "./dist/project/project.handler.js",
30
- "./project/project.operations": "./dist/project/project.operations.js",
31
- "./project/project.presentation": "./dist/project/project.presentation.js",
32
- "./project/project.schema": "./dist/project/project.schema.js",
33
- "./saas-boilerplate.feature": "./dist/saas-boilerplate.feature.js",
34
- "./seeders": "./dist/seeders/index.js",
35
- "./settings": "./dist/settings/index.js",
36
- "./settings/settings.entity": "./dist/settings/settings.entity.js",
37
- "./settings/settings.enum": "./dist/settings/settings.enum.js",
38
- "./shared/mock-data": "./dist/shared/mock-data.js",
39
- "./shared/overlay-types": "./dist/shared/overlay-types.js",
40
- "./tests/operations.test-spec": "./dist/tests/operations.test-spec.js",
41
- "./ui": "./dist/ui/index.js",
42
- "./ui/hooks": "./dist/ui/hooks/index.js",
43
- "./ui/hooks/useProjectList": "./dist/ui/hooks/useProjectList.js",
44
- "./ui/hooks/useProjectMutations": "./dist/ui/hooks/useProjectMutations.js",
45
- "./ui/modals": "./dist/ui/modals/index.js",
46
- "./ui/modals/CreateProjectModal": "./dist/ui/modals/CreateProjectModal.js",
47
- "./ui/modals/ProjectActionsModal": "./dist/ui/modals/ProjectActionsModal.js",
48
- "./ui/overlays": "./dist/ui/overlays/index.js",
49
- "./ui/overlays/demo-overlays": "./dist/ui/overlays/demo-overlays.js",
50
- "./ui/renderers": "./dist/ui/renderers/index.js",
51
- "./ui/renderers/project-list.markdown": "./dist/ui/renderers/project-list.markdown.js",
52
- "./ui/renderers/project-list.renderer": "./dist/ui/renderers/project-list.renderer.js",
53
- "./ui/SaasDashboard": "./dist/ui/SaasDashboard.js",
54
- "./ui/SaasProjectList": "./dist/ui/SaasProjectList.js",
55
- "./ui/SaasSettingsPanel": "./dist/ui/SaasSettingsPanel.js",
56
- "./*": "./*"
8
+ ".": "./src/index.ts",
9
+ "./billing": "./src/billing/index.ts",
10
+ "./billing/billing.entity": "./src/billing/billing.entity.ts",
11
+ "./billing/billing.enum": "./src/billing/billing.enum.ts",
12
+ "./billing/billing.event": "./src/billing/billing.event.ts",
13
+ "./billing/billing.handler": "./src/billing/billing.handler.ts",
14
+ "./billing/billing.operations": "./src/billing/billing.operations.ts",
15
+ "./billing/billing.presentation": "./src/billing/billing.presentation.ts",
16
+ "./billing/billing.schema": "./src/billing/billing.schema.ts",
17
+ "./billing/index": "./src/billing/index.ts",
18
+ "./dashboard": "./src/dashboard/index.ts",
19
+ "./dashboard/dashboard.presentation": "./src/dashboard/dashboard.presentation.ts",
20
+ "./dashboard/index": "./src/dashboard/index.ts",
21
+ "./docs": "./src/docs/index.ts",
22
+ "./docs/index": "./src/docs/index.ts",
23
+ "./docs/saas-boilerplate.docblock": "./src/docs/saas-boilerplate.docblock.ts",
24
+ "./example": "./src/example.ts",
25
+ "./handlers": "./src/handlers/index.ts",
26
+ "./handlers/index": "./src/handlers/index.ts",
27
+ "./handlers/saas.handlers": "./src/handlers/saas.handlers.ts",
28
+ "./presentations": "./src/presentations/index.ts",
29
+ "./presentations/index": "./src/presentations/index.ts",
30
+ "./project": "./src/project/index.ts",
31
+ "./project/index": "./src/project/index.ts",
32
+ "./project/project.entity": "./src/project/project.entity.ts",
33
+ "./project/project.enum": "./src/project/project.enum.ts",
34
+ "./project/project.event": "./src/project/project.event.ts",
35
+ "./project/project.handler": "./src/project/project.handler.ts",
36
+ "./project/project.operations": "./src/project/project.operations.ts",
37
+ "./project/project.presentation": "./src/project/project.presentation.ts",
38
+ "./project/project.schema": "./src/project/project.schema.ts",
39
+ "./saas-boilerplate.feature": "./src/saas-boilerplate.feature.ts",
40
+ "./seeders": "./src/seeders/index.ts",
41
+ "./seeders/index": "./src/seeders/index.ts",
42
+ "./settings": "./src/settings/index.ts",
43
+ "./settings/index": "./src/settings/index.ts",
44
+ "./settings/settings.entity": "./src/settings/settings.entity.ts",
45
+ "./settings/settings.enum": "./src/settings/settings.enum.ts",
46
+ "./shared/mock-data": "./src/shared/mock-data.ts",
47
+ "./shared/overlay-types": "./src/shared/overlay-types.ts",
48
+ "./tests/operations.test-spec": "./src/tests/operations.test-spec.ts",
49
+ "./ui": "./src/ui/index.ts",
50
+ "./ui/hooks": "./src/ui/hooks/index.ts",
51
+ "./ui/hooks/index": "./src/ui/hooks/index.ts",
52
+ "./ui/hooks/useProjectList": "./src/ui/hooks/useProjectList.ts",
53
+ "./ui/hooks/useProjectMutations": "./src/ui/hooks/useProjectMutations.ts",
54
+ "./ui/index": "./src/ui/index.ts",
55
+ "./ui/modals": "./src/ui/modals/index.ts",
56
+ "./ui/modals/CreateProjectModal": "./src/ui/modals/CreateProjectModal.tsx",
57
+ "./ui/modals/index": "./src/ui/modals/index.ts",
58
+ "./ui/modals/ProjectActionsModal": "./src/ui/modals/ProjectActionsModal.tsx",
59
+ "./ui/overlays": "./src/ui/overlays/index.ts",
60
+ "./ui/overlays/demo-overlays": "./src/ui/overlays/demo-overlays.ts",
61
+ "./ui/overlays/index": "./src/ui/overlays/index.ts",
62
+ "./ui/renderers": "./src/ui/renderers/index.ts",
63
+ "./ui/renderers/index": "./src/ui/renderers/index.ts",
64
+ "./ui/renderers/project-list.markdown": "./src/ui/renderers/project-list.markdown.ts",
65
+ "./ui/renderers/project-list.renderer": "./src/ui/renderers/project-list.renderer.tsx",
66
+ "./ui/SaasDashboard": "./src/ui/SaasDashboard.tsx",
67
+ "./ui/SaasProjectList": "./src/ui/SaasProjectList.tsx",
68
+ "./ui/SaasSettingsPanel": "./src/ui/SaasSettingsPanel.tsx"
57
69
  },
58
70
  "scripts": {
59
71
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
60
72
  "publish:pkg:canary": "bun publish:pkg --tag canary",
61
- "build": "bun build:types && bun build:bundle",
62
- "build:bundle": "tsdown",
63
- "build:types": "tsc --noEmit",
64
- "dev": "bun build:bundle --watch",
73
+ "build": "bun run prebuild && bun run build:bundle && bun run build:types",
74
+ "build:bundle": "contractspec-bun-build transpile",
75
+ "build:types": "contractspec-bun-build types",
76
+ "dev": "contractspec-bun-build dev",
65
77
  "clean": "rimraf dist .turbo",
66
78
  "lint": "bun lint:fix",
67
79
  "lint:fix": "eslint src --fix",
68
80
  "lint:check": "eslint src",
69
- "test": "bun test"
81
+ "test": "bun test",
82
+ "prebuild": "contractspec-bun-build prebuild",
83
+ "typecheck": "tsc --noEmit"
70
84
  },
71
85
  "dependencies": {
72
- "@contractspec/lib.identity-rbac": "1.57.0",
73
- "@contractspec/lib.jobs": "1.57.0",
74
- "@contractspec/module.audit-trail": "1.57.0",
75
- "@contractspec/module.notifications": "1.57.0",
76
- "@contractspec/lib.contracts": "1.57.0",
77
- "@contractspec/lib.schema": "1.57.0",
78
- "@contractspec/lib.example-shared-ui": "1.11.0",
79
- "@contractspec/lib.design-system": "1.57.0",
80
- "@contractspec/lib.runtime-sandbox": "0.12.0",
86
+ "@contractspec/lib.identity-rbac": "1.59.0",
87
+ "@contractspec/lib.jobs": "1.59.0",
88
+ "@contractspec/module.audit-trail": "1.59.0",
89
+ "@contractspec/module.notifications": "1.59.0",
90
+ "@contractspec/lib.contracts": "1.59.0",
91
+ "@contractspec/lib.schema": "1.59.0",
92
+ "@contractspec/lib.example-shared-ui": "1.13.0",
93
+ "@contractspec/lib.design-system": "1.59.0",
94
+ "@contractspec/lib.runtime-sandbox": "0.14.0",
81
95
  "react": "19.2.4",
82
96
  "react-dom": "19.2.4"
83
97
  },
84
98
  "devDependencies": {
85
- "@contractspec/tool.tsdown": "1.57.0",
86
- "@contractspec/tool.typescript": "1.57.0",
87
- "tsdown": "^0.20.3",
99
+ "@contractspec/tool.typescript": "1.59.0",
88
100
  "typescript": "^5.9.3",
89
101
  "@types/react": "^19.2.13",
90
- "@types/react-dom": "^19.2.2"
102
+ "@types/react-dom": "^19.2.2",
103
+ "@contractspec/tool.bun": "1.58.0"
91
104
  },
92
105
  "publishConfig": {
93
106
  "exports": {
94
- ".": "./dist/index.js",
95
- "./billing": "./dist/billing/index.js",
96
- "./billing/billing.contracts": "./dist/billing/billing.operations.js",
97
- "./billing/billing.entity": "./dist/billing/billing.entity.js",
98
- "./billing/billing.enum": "./dist/billing/billing.enum.js",
99
- "./billing/billing.event": "./dist/billing/billing.event.js",
100
- "./billing/billing.handler": "./dist/billing/billing.handler.js",
101
- "./billing/billing.presentation": "./dist/billing/billing.presentation.js",
102
- "./billing/billing.schema": "./dist/billing/billing.schema.js",
103
- "./dashboard": "./dist/dashboard/index.js",
104
- "./dashboard/dashboard.presentation": "./dist/dashboard/dashboard.presentation.js",
105
- "./docs": "./dist/docs/index.js",
106
- "./docs/saas-boilerplate.docblock": "./dist/docs/saas-boilerplate.docblock.js",
107
- "./example": "./dist/example.js",
108
- "./handlers": "./dist/handlers/index.js",
109
- "./presentations": "./dist/presentations/index.js",
110
- "./project": "./dist/project/index.js",
111
- "./project/project.contracts": "./dist/project/project.operations.js",
112
- "./project/project.entity": "./dist/project/project.entity.js",
113
- "./project/project.enum": "./dist/project/project.enum.js",
114
- "./project/project.event": "./dist/project/project.event.js",
115
- "./project/project.handler": "./dist/project/project.handler.js",
116
- "./project/project.presentation": "./dist/project/project.presentation.js",
117
- "./project/project.schema": "./dist/project/project.schema.js",
118
- "./saas-boilerplate.feature": "./dist/saas-boilerplate.feature.js",
119
- "./settings": "./dist/settings/index.js",
120
- "./settings/settings.entity": "./dist/settings/settings.entity.js",
121
- "./settings/settings.enum": "./dist/settings/settings.enum.js",
122
- "./shared/mock-data": "./dist/shared/mock-data.js",
123
- "./*": "./*"
107
+ ".": {
108
+ "types": "./dist/index.d.ts",
109
+ "bun": "./dist/index.js",
110
+ "node": "./dist/node/index.mjs",
111
+ "browser": "./dist/browser/index.js",
112
+ "default": "./dist/index.js"
113
+ },
114
+ "./billing": {
115
+ "types": "./dist/billing/index.d.ts",
116
+ "bun": "./dist/billing/index.js",
117
+ "node": "./dist/node/billing/index.mjs",
118
+ "browser": "./dist/browser/billing/index.js",
119
+ "default": "./dist/billing/index.js"
120
+ },
121
+ "./billing/billing.entity": {
122
+ "types": "./dist/billing/billing.entity.d.ts",
123
+ "bun": "./dist/billing/billing.entity.js",
124
+ "node": "./dist/node/billing/billing.entity.mjs",
125
+ "browser": "./dist/browser/billing/billing.entity.js",
126
+ "default": "./dist/billing/billing.entity.js"
127
+ },
128
+ "./billing/billing.enum": {
129
+ "types": "./dist/billing/billing.enum.d.ts",
130
+ "bun": "./dist/billing/billing.enum.js",
131
+ "node": "./dist/node/billing/billing.enum.mjs",
132
+ "browser": "./dist/browser/billing/billing.enum.js",
133
+ "default": "./dist/billing/billing.enum.js"
134
+ },
135
+ "./billing/billing.event": {
136
+ "types": "./dist/billing/billing.event.d.ts",
137
+ "bun": "./dist/billing/billing.event.js",
138
+ "node": "./dist/node/billing/billing.event.mjs",
139
+ "browser": "./dist/browser/billing/billing.event.js",
140
+ "default": "./dist/billing/billing.event.js"
141
+ },
142
+ "./billing/billing.handler": {
143
+ "types": "./dist/billing/billing.handler.d.ts",
144
+ "bun": "./dist/billing/billing.handler.js",
145
+ "node": "./dist/node/billing/billing.handler.mjs",
146
+ "browser": "./dist/browser/billing/billing.handler.js",
147
+ "default": "./dist/billing/billing.handler.js"
148
+ },
149
+ "./billing/billing.operations": {
150
+ "types": "./dist/billing/billing.operations.d.ts",
151
+ "bun": "./dist/billing/billing.operations.js",
152
+ "node": "./dist/node/billing/billing.operations.mjs",
153
+ "browser": "./dist/browser/billing/billing.operations.js",
154
+ "default": "./dist/billing/billing.operations.js"
155
+ },
156
+ "./billing/billing.presentation": {
157
+ "types": "./dist/billing/billing.presentation.d.ts",
158
+ "bun": "./dist/billing/billing.presentation.js",
159
+ "node": "./dist/node/billing/billing.presentation.mjs",
160
+ "browser": "./dist/browser/billing/billing.presentation.js",
161
+ "default": "./dist/billing/billing.presentation.js"
162
+ },
163
+ "./billing/billing.schema": {
164
+ "types": "./dist/billing/billing.schema.d.ts",
165
+ "bun": "./dist/billing/billing.schema.js",
166
+ "node": "./dist/node/billing/billing.schema.mjs",
167
+ "browser": "./dist/browser/billing/billing.schema.js",
168
+ "default": "./dist/billing/billing.schema.js"
169
+ },
170
+ "./billing/index": {
171
+ "types": "./dist/billing/index.d.ts",
172
+ "bun": "./dist/billing/index.js",
173
+ "node": "./dist/node/billing/index.mjs",
174
+ "browser": "./dist/browser/billing/index.js",
175
+ "default": "./dist/billing/index.js"
176
+ },
177
+ "./dashboard": {
178
+ "types": "./dist/dashboard/index.d.ts",
179
+ "bun": "./dist/dashboard/index.js",
180
+ "node": "./dist/node/dashboard/index.mjs",
181
+ "browser": "./dist/browser/dashboard/index.js",
182
+ "default": "./dist/dashboard/index.js"
183
+ },
184
+ "./dashboard/dashboard.presentation": {
185
+ "types": "./dist/dashboard/dashboard.presentation.d.ts",
186
+ "bun": "./dist/dashboard/dashboard.presentation.js",
187
+ "node": "./dist/node/dashboard/dashboard.presentation.mjs",
188
+ "browser": "./dist/browser/dashboard/dashboard.presentation.js",
189
+ "default": "./dist/dashboard/dashboard.presentation.js"
190
+ },
191
+ "./dashboard/index": {
192
+ "types": "./dist/dashboard/index.d.ts",
193
+ "bun": "./dist/dashboard/index.js",
194
+ "node": "./dist/node/dashboard/index.mjs",
195
+ "browser": "./dist/browser/dashboard/index.js",
196
+ "default": "./dist/dashboard/index.js"
197
+ },
198
+ "./docs": {
199
+ "types": "./dist/docs/index.d.ts",
200
+ "bun": "./dist/docs/index.js",
201
+ "node": "./dist/node/docs/index.mjs",
202
+ "browser": "./dist/browser/docs/index.js",
203
+ "default": "./dist/docs/index.js"
204
+ },
205
+ "./docs/index": {
206
+ "types": "./dist/docs/index.d.ts",
207
+ "bun": "./dist/docs/index.js",
208
+ "node": "./dist/node/docs/index.mjs",
209
+ "browser": "./dist/browser/docs/index.js",
210
+ "default": "./dist/docs/index.js"
211
+ },
212
+ "./docs/saas-boilerplate.docblock": {
213
+ "types": "./dist/docs/saas-boilerplate.docblock.d.ts",
214
+ "bun": "./dist/docs/saas-boilerplate.docblock.js",
215
+ "node": "./dist/node/docs/saas-boilerplate.docblock.mjs",
216
+ "browser": "./dist/browser/docs/saas-boilerplate.docblock.js",
217
+ "default": "./dist/docs/saas-boilerplate.docblock.js"
218
+ },
219
+ "./example": {
220
+ "types": "./dist/example.d.ts",
221
+ "bun": "./dist/example.js",
222
+ "node": "./dist/node/example.mjs",
223
+ "browser": "./dist/browser/example.js",
224
+ "default": "./dist/example.js"
225
+ },
226
+ "./handlers": {
227
+ "types": "./dist/handlers/index.d.ts",
228
+ "bun": "./dist/handlers/index.js",
229
+ "node": "./dist/node/handlers/index.mjs",
230
+ "browser": "./dist/browser/handlers/index.js",
231
+ "default": "./dist/handlers/index.js"
232
+ },
233
+ "./handlers/index": {
234
+ "types": "./dist/handlers/index.d.ts",
235
+ "bun": "./dist/handlers/index.js",
236
+ "node": "./dist/node/handlers/index.mjs",
237
+ "browser": "./dist/browser/handlers/index.js",
238
+ "default": "./dist/handlers/index.js"
239
+ },
240
+ "./handlers/saas.handlers": {
241
+ "types": "./dist/handlers/saas.handlers.d.ts",
242
+ "bun": "./dist/handlers/saas.handlers.js",
243
+ "node": "./dist/node/handlers/saas.handlers.mjs",
244
+ "browser": "./dist/browser/handlers/saas.handlers.js",
245
+ "default": "./dist/handlers/saas.handlers.js"
246
+ },
247
+ "./presentations": {
248
+ "types": "./dist/presentations/index.d.ts",
249
+ "bun": "./dist/presentations/index.js",
250
+ "node": "./dist/node/presentations/index.mjs",
251
+ "browser": "./dist/browser/presentations/index.js",
252
+ "default": "./dist/presentations/index.js"
253
+ },
254
+ "./presentations/index": {
255
+ "types": "./dist/presentations/index.d.ts",
256
+ "bun": "./dist/presentations/index.js",
257
+ "node": "./dist/node/presentations/index.mjs",
258
+ "browser": "./dist/browser/presentations/index.js",
259
+ "default": "./dist/presentations/index.js"
260
+ },
261
+ "./project": {
262
+ "types": "./dist/project/index.d.ts",
263
+ "bun": "./dist/project/index.js",
264
+ "node": "./dist/node/project/index.mjs",
265
+ "browser": "./dist/browser/project/index.js",
266
+ "default": "./dist/project/index.js"
267
+ },
268
+ "./project/index": {
269
+ "types": "./dist/project/index.d.ts",
270
+ "bun": "./dist/project/index.js",
271
+ "node": "./dist/node/project/index.mjs",
272
+ "browser": "./dist/browser/project/index.js",
273
+ "default": "./dist/project/index.js"
274
+ },
275
+ "./project/project.entity": {
276
+ "types": "./dist/project/project.entity.d.ts",
277
+ "bun": "./dist/project/project.entity.js",
278
+ "node": "./dist/node/project/project.entity.mjs",
279
+ "browser": "./dist/browser/project/project.entity.js",
280
+ "default": "./dist/project/project.entity.js"
281
+ },
282
+ "./project/project.enum": {
283
+ "types": "./dist/project/project.enum.d.ts",
284
+ "bun": "./dist/project/project.enum.js",
285
+ "node": "./dist/node/project/project.enum.mjs",
286
+ "browser": "./dist/browser/project/project.enum.js",
287
+ "default": "./dist/project/project.enum.js"
288
+ },
289
+ "./project/project.event": {
290
+ "types": "./dist/project/project.event.d.ts",
291
+ "bun": "./dist/project/project.event.js",
292
+ "node": "./dist/node/project/project.event.mjs",
293
+ "browser": "./dist/browser/project/project.event.js",
294
+ "default": "./dist/project/project.event.js"
295
+ },
296
+ "./project/project.handler": {
297
+ "types": "./dist/project/project.handler.d.ts",
298
+ "bun": "./dist/project/project.handler.js",
299
+ "node": "./dist/node/project/project.handler.mjs",
300
+ "browser": "./dist/browser/project/project.handler.js",
301
+ "default": "./dist/project/project.handler.js"
302
+ },
303
+ "./project/project.operations": {
304
+ "types": "./dist/project/project.operations.d.ts",
305
+ "bun": "./dist/project/project.operations.js",
306
+ "node": "./dist/node/project/project.operations.mjs",
307
+ "browser": "./dist/browser/project/project.operations.js",
308
+ "default": "./dist/project/project.operations.js"
309
+ },
310
+ "./project/project.presentation": {
311
+ "types": "./dist/project/project.presentation.d.ts",
312
+ "bun": "./dist/project/project.presentation.js",
313
+ "node": "./dist/node/project/project.presentation.mjs",
314
+ "browser": "./dist/browser/project/project.presentation.js",
315
+ "default": "./dist/project/project.presentation.js"
316
+ },
317
+ "./project/project.schema": {
318
+ "types": "./dist/project/project.schema.d.ts",
319
+ "bun": "./dist/project/project.schema.js",
320
+ "node": "./dist/node/project/project.schema.mjs",
321
+ "browser": "./dist/browser/project/project.schema.js",
322
+ "default": "./dist/project/project.schema.js"
323
+ },
324
+ "./saas-boilerplate.feature": {
325
+ "types": "./dist/saas-boilerplate.feature.d.ts",
326
+ "bun": "./dist/saas-boilerplate.feature.js",
327
+ "node": "./dist/node/saas-boilerplate.feature.mjs",
328
+ "browser": "./dist/browser/saas-boilerplate.feature.js",
329
+ "default": "./dist/saas-boilerplate.feature.js"
330
+ },
331
+ "./seeders": {
332
+ "types": "./dist/seeders/index.d.ts",
333
+ "bun": "./dist/seeders/index.js",
334
+ "node": "./dist/node/seeders/index.mjs",
335
+ "browser": "./dist/browser/seeders/index.js",
336
+ "default": "./dist/seeders/index.js"
337
+ },
338
+ "./seeders/index": {
339
+ "types": "./dist/seeders/index.d.ts",
340
+ "bun": "./dist/seeders/index.js",
341
+ "node": "./dist/node/seeders/index.mjs",
342
+ "browser": "./dist/browser/seeders/index.js",
343
+ "default": "./dist/seeders/index.js"
344
+ },
345
+ "./settings": {
346
+ "types": "./dist/settings/index.d.ts",
347
+ "bun": "./dist/settings/index.js",
348
+ "node": "./dist/node/settings/index.mjs",
349
+ "browser": "./dist/browser/settings/index.js",
350
+ "default": "./dist/settings/index.js"
351
+ },
352
+ "./settings/index": {
353
+ "types": "./dist/settings/index.d.ts",
354
+ "bun": "./dist/settings/index.js",
355
+ "node": "./dist/node/settings/index.mjs",
356
+ "browser": "./dist/browser/settings/index.js",
357
+ "default": "./dist/settings/index.js"
358
+ },
359
+ "./settings/settings.entity": {
360
+ "types": "./dist/settings/settings.entity.d.ts",
361
+ "bun": "./dist/settings/settings.entity.js",
362
+ "node": "./dist/node/settings/settings.entity.mjs",
363
+ "browser": "./dist/browser/settings/settings.entity.js",
364
+ "default": "./dist/settings/settings.entity.js"
365
+ },
366
+ "./settings/settings.enum": {
367
+ "types": "./dist/settings/settings.enum.d.ts",
368
+ "bun": "./dist/settings/settings.enum.js",
369
+ "node": "./dist/node/settings/settings.enum.mjs",
370
+ "browser": "./dist/browser/settings/settings.enum.js",
371
+ "default": "./dist/settings/settings.enum.js"
372
+ },
373
+ "./shared/mock-data": {
374
+ "types": "./dist/shared/mock-data.d.ts",
375
+ "bun": "./dist/shared/mock-data.js",
376
+ "node": "./dist/node/shared/mock-data.mjs",
377
+ "browser": "./dist/browser/shared/mock-data.js",
378
+ "default": "./dist/shared/mock-data.js"
379
+ },
380
+ "./shared/overlay-types": {
381
+ "types": "./dist/shared/overlay-types.d.ts",
382
+ "bun": "./dist/shared/overlay-types.js",
383
+ "node": "./dist/node/shared/overlay-types.mjs",
384
+ "browser": "./dist/browser/shared/overlay-types.js",
385
+ "default": "./dist/shared/overlay-types.js"
386
+ },
387
+ "./tests/operations.test-spec": {
388
+ "types": "./dist/tests/operations.test-spec.d.ts",
389
+ "bun": "./dist/tests/operations.test-spec.js",
390
+ "node": "./dist/node/tests/operations.test-spec.mjs",
391
+ "browser": "./dist/browser/tests/operations.test-spec.js",
392
+ "default": "./dist/tests/operations.test-spec.js"
393
+ },
394
+ "./ui": {
395
+ "types": "./dist/ui/index.d.ts",
396
+ "bun": "./dist/ui/index.js",
397
+ "node": "./dist/node/ui/index.mjs",
398
+ "browser": "./dist/browser/ui/index.js",
399
+ "default": "./dist/ui/index.js"
400
+ },
401
+ "./ui/hooks": {
402
+ "types": "./dist/ui/hooks/index.d.ts",
403
+ "bun": "./dist/ui/hooks/index.js",
404
+ "node": "./dist/node/ui/hooks/index.mjs",
405
+ "browser": "./dist/browser/ui/hooks/index.js",
406
+ "default": "./dist/ui/hooks/index.js"
407
+ },
408
+ "./ui/hooks/index": {
409
+ "types": "./dist/ui/hooks/index.d.ts",
410
+ "bun": "./dist/ui/hooks/index.js",
411
+ "node": "./dist/node/ui/hooks/index.mjs",
412
+ "browser": "./dist/browser/ui/hooks/index.js",
413
+ "default": "./dist/ui/hooks/index.js"
414
+ },
415
+ "./ui/hooks/useProjectList": {
416
+ "types": "./dist/ui/hooks/useProjectList.d.ts",
417
+ "bun": "./dist/ui/hooks/useProjectList.js",
418
+ "node": "./dist/node/ui/hooks/useProjectList.mjs",
419
+ "browser": "./dist/browser/ui/hooks/useProjectList.js",
420
+ "default": "./dist/ui/hooks/useProjectList.js"
421
+ },
422
+ "./ui/hooks/useProjectMutations": {
423
+ "types": "./dist/ui/hooks/useProjectMutations.d.ts",
424
+ "bun": "./dist/ui/hooks/useProjectMutations.js",
425
+ "node": "./dist/node/ui/hooks/useProjectMutations.mjs",
426
+ "browser": "./dist/browser/ui/hooks/useProjectMutations.js",
427
+ "default": "./dist/ui/hooks/useProjectMutations.js"
428
+ },
429
+ "./ui/index": {
430
+ "types": "./dist/ui/index.d.ts",
431
+ "bun": "./dist/ui/index.js",
432
+ "node": "./dist/node/ui/index.mjs",
433
+ "browser": "./dist/browser/ui/index.js",
434
+ "default": "./dist/ui/index.js"
435
+ },
436
+ "./ui/modals": {
437
+ "types": "./dist/ui/modals/index.d.ts",
438
+ "bun": "./dist/ui/modals/index.js",
439
+ "node": "./dist/node/ui/modals/index.mjs",
440
+ "browser": "./dist/browser/ui/modals/index.js",
441
+ "default": "./dist/ui/modals/index.js"
442
+ },
443
+ "./ui/modals/CreateProjectModal": {
444
+ "types": "./dist/ui/modals/CreateProjectModal.d.ts",
445
+ "bun": "./dist/ui/modals/CreateProjectModal.js",
446
+ "node": "./dist/node/ui/modals/CreateProjectModal.mjs",
447
+ "browser": "./dist/browser/ui/modals/CreateProjectModal.js",
448
+ "default": "./dist/ui/modals/CreateProjectModal.js"
449
+ },
450
+ "./ui/modals/index": {
451
+ "types": "./dist/ui/modals/index.d.ts",
452
+ "bun": "./dist/ui/modals/index.js",
453
+ "node": "./dist/node/ui/modals/index.mjs",
454
+ "browser": "./dist/browser/ui/modals/index.js",
455
+ "default": "./dist/ui/modals/index.js"
456
+ },
457
+ "./ui/modals/ProjectActionsModal": {
458
+ "types": "./dist/ui/modals/ProjectActionsModal.d.ts",
459
+ "bun": "./dist/ui/modals/ProjectActionsModal.js",
460
+ "node": "./dist/node/ui/modals/ProjectActionsModal.mjs",
461
+ "browser": "./dist/browser/ui/modals/ProjectActionsModal.js",
462
+ "default": "./dist/ui/modals/ProjectActionsModal.js"
463
+ },
464
+ "./ui/overlays": {
465
+ "types": "./dist/ui/overlays/index.d.ts",
466
+ "bun": "./dist/ui/overlays/index.js",
467
+ "node": "./dist/node/ui/overlays/index.mjs",
468
+ "browser": "./dist/browser/ui/overlays/index.js",
469
+ "default": "./dist/ui/overlays/index.js"
470
+ },
471
+ "./ui/overlays/demo-overlays": {
472
+ "types": "./dist/ui/overlays/demo-overlays.d.ts",
473
+ "bun": "./dist/ui/overlays/demo-overlays.js",
474
+ "node": "./dist/node/ui/overlays/demo-overlays.mjs",
475
+ "browser": "./dist/browser/ui/overlays/demo-overlays.js",
476
+ "default": "./dist/ui/overlays/demo-overlays.js"
477
+ },
478
+ "./ui/overlays/index": {
479
+ "types": "./dist/ui/overlays/index.d.ts",
480
+ "bun": "./dist/ui/overlays/index.js",
481
+ "node": "./dist/node/ui/overlays/index.mjs",
482
+ "browser": "./dist/browser/ui/overlays/index.js",
483
+ "default": "./dist/ui/overlays/index.js"
484
+ },
485
+ "./ui/renderers": {
486
+ "types": "./dist/ui/renderers/index.d.ts",
487
+ "bun": "./dist/ui/renderers/index.js",
488
+ "node": "./dist/node/ui/renderers/index.mjs",
489
+ "browser": "./dist/browser/ui/renderers/index.js",
490
+ "default": "./dist/ui/renderers/index.js"
491
+ },
492
+ "./ui/renderers/index": {
493
+ "types": "./dist/ui/renderers/index.d.ts",
494
+ "bun": "./dist/ui/renderers/index.js",
495
+ "node": "./dist/node/ui/renderers/index.mjs",
496
+ "browser": "./dist/browser/ui/renderers/index.js",
497
+ "default": "./dist/ui/renderers/index.js"
498
+ },
499
+ "./ui/renderers/project-list.markdown": {
500
+ "types": "./dist/ui/renderers/project-list.markdown.d.ts",
501
+ "bun": "./dist/ui/renderers/project-list.markdown.js",
502
+ "node": "./dist/node/ui/renderers/project-list.markdown.mjs",
503
+ "browser": "./dist/browser/ui/renderers/project-list.markdown.js",
504
+ "default": "./dist/ui/renderers/project-list.markdown.js"
505
+ },
506
+ "./ui/renderers/project-list.renderer": {
507
+ "types": "./dist/ui/renderers/project-list.renderer.d.ts",
508
+ "bun": "./dist/ui/renderers/project-list.renderer.js",
509
+ "node": "./dist/node/ui/renderers/project-list.renderer.mjs",
510
+ "browser": "./dist/browser/ui/renderers/project-list.renderer.js",
511
+ "default": "./dist/ui/renderers/project-list.renderer.js"
512
+ },
513
+ "./ui/SaasDashboard": {
514
+ "types": "./dist/ui/SaasDashboard.d.ts",
515
+ "bun": "./dist/ui/SaasDashboard.js",
516
+ "node": "./dist/node/ui/SaasDashboard.mjs",
517
+ "browser": "./dist/browser/ui/SaasDashboard.js",
518
+ "default": "./dist/ui/SaasDashboard.js"
519
+ },
520
+ "./ui/SaasProjectList": {
521
+ "types": "./dist/ui/SaasProjectList.d.ts",
522
+ "bun": "./dist/ui/SaasProjectList.js",
523
+ "node": "./dist/node/ui/SaasProjectList.mjs",
524
+ "browser": "./dist/browser/ui/SaasProjectList.js",
525
+ "default": "./dist/ui/SaasProjectList.js"
526
+ },
527
+ "./ui/SaasSettingsPanel": {
528
+ "types": "./dist/ui/SaasSettingsPanel.d.ts",
529
+ "bun": "./dist/ui/SaasSettingsPanel.js",
530
+ "node": "./dist/node/ui/SaasSettingsPanel.mjs",
531
+ "browser": "./dist/browser/ui/SaasSettingsPanel.js",
532
+ "default": "./dist/ui/SaasSettingsPanel.js"
533
+ }
124
534
  },
125
535
  "registry": "https://registry.npmjs.org/",
126
536
  "access": "public"