@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.
- package/.turbo/turbo-build.log +160 -180
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +39 -0
- package/dist/billing/billing.entity.d.ts +40 -45
- package/dist/billing/billing.entity.d.ts.map +1 -1
- package/dist/billing/billing.entity.js +110 -118
- package/dist/billing/billing.enum.d.ts +2 -7
- package/dist/billing/billing.enum.d.ts.map +1 -1
- package/dist/billing/billing.enum.js +17 -24
- package/dist/billing/billing.event.d.ts +67 -73
- package/dist/billing/billing.event.d.ts.map +1 -1
- package/dist/billing/billing.event.js +84 -146
- package/dist/billing/billing.handler.d.ts +59 -62
- package/dist/billing/billing.handler.d.ts.map +1 -1
- package/dist/billing/billing.handler.js +140 -49
- package/dist/billing/billing.operations.d.ts +138 -144
- package/dist/billing/billing.operations.d.ts.map +1 -1
- package/dist/billing/billing.operations.js +273 -175
- package/dist/billing/billing.presentation.d.ts +2 -7
- package/dist/billing/billing.presentation.d.ts.map +1 -1
- package/dist/billing/billing.presentation.js +51 -57
- package/dist/billing/billing.schema.d.ts +159 -164
- package/dist/billing/billing.schema.d.ts.map +1 -1
- package/dist/billing/billing.schema.js +112 -204
- package/dist/billing/index.d.ts +11 -8
- package/dist/billing/index.d.ts.map +1 -0
- package/dist/billing/index.js +689 -9
- package/dist/browser/billing/billing.entity.js +113 -0
- package/dist/browser/billing/billing.enum.js +19 -0
- package/dist/browser/billing/billing.event.js +90 -0
- package/dist/browser/billing/billing.handler.js +148 -0
- package/dist/browser/billing/billing.operations.js +278 -0
- package/dist/browser/billing/billing.presentation.js +52 -0
- package/dist/browser/billing/billing.schema.js +121 -0
- package/dist/browser/billing/index.js +688 -0
- package/dist/browser/dashboard/dashboard.presentation.js +52 -0
- package/dist/browser/dashboard/index.js +52 -0
- package/dist/browser/docs/index.js +93 -0
- package/dist/browser/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/browser/example.js +39 -0
- package/dist/browser/handlers/index.js +358 -0
- package/dist/browser/handlers/saas.handlers.js +134 -0
- package/dist/browser/index.js +3340 -0
- package/dist/browser/presentations/index.js +290 -0
- package/dist/browser/project/index.js +790 -0
- package/dist/browser/project/project.entity.js +77 -0
- package/dist/browser/project/project.enum.js +18 -0
- package/dist/browser/project/project.event.js +103 -0
- package/dist/browser/project/project.handler.js +178 -0
- package/dist/browser/project/project.operations.js +372 -0
- package/dist/browser/project/project.presentation.js +177 -0
- package/dist/browser/project/project.schema.js +134 -0
- package/dist/browser/saas-boilerplate.feature.js +88 -0
- package/dist/browser/seeders/index.js +20 -0
- package/dist/browser/settings/index.js +75 -0
- package/dist/browser/settings/settings.entity.js +74 -0
- package/dist/browser/settings/settings.enum.js +11 -0
- package/dist/browser/shared/mock-data.js +104 -0
- package/dist/browser/shared/overlay-types.js +0 -0
- package/dist/browser/tests/operations.test-spec.js +112 -0
- package/dist/browser/ui/SaasDashboard.js +988 -0
- package/dist/browser/ui/SaasProjectList.js +162 -0
- package/dist/browser/ui/SaasSettingsPanel.js +145 -0
- package/dist/browser/ui/hooks/index.js +159 -0
- package/dist/browser/ui/hooks/useProjectList.js +66 -0
- package/dist/browser/ui/hooks/useProjectMutations.js +91 -0
- package/dist/browser/ui/index.js +1808 -0
- package/dist/browser/ui/modals/CreateProjectModal.js +153 -0
- package/dist/browser/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/browser/ui/modals/index.js +487 -0
- package/dist/browser/ui/overlays/demo-overlays.js +61 -0
- package/dist/browser/ui/overlays/index.js +61 -0
- package/dist/browser/ui/renderers/index.js +675 -0
- package/dist/browser/ui/renderers/project-list.markdown.js +499 -0
- package/dist/browser/ui/renderers/project-list.renderer.js +177 -0
- package/dist/dashboard/dashboard.presentation.d.ts +2 -7
- package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
- package/dist/dashboard/dashboard.presentation.js +51 -53
- package/dist/dashboard/index.d.ts +5 -2
- package/dist/dashboard/index.d.ts.map +1 -0
- package/dist/dashboard/index.js +53 -3
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +94 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts +2 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts.map +1 -0
- package/dist/docs/saas-boilerplate.docblock.js +45 -51
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +38 -50
- package/dist/handlers/index.d.ts +7 -4
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +358 -4
- package/dist/handlers/saas.handlers.d.ts +60 -59
- package/dist/handlers/saas.handlers.d.ts.map +1 -1
- package/dist/handlers/saas.handlers.js +127 -140
- package/dist/index.d.ts +15 -45
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3335 -75
- package/dist/node/billing/billing.entity.js +113 -0
- package/dist/node/billing/billing.enum.js +19 -0
- package/dist/node/billing/billing.event.js +90 -0
- package/dist/node/billing/billing.handler.js +148 -0
- package/dist/node/billing/billing.operations.js +278 -0
- package/dist/node/billing/billing.presentation.js +52 -0
- package/dist/node/billing/billing.schema.js +121 -0
- package/dist/node/billing/index.js +688 -0
- package/dist/node/dashboard/dashboard.presentation.js +52 -0
- package/dist/node/dashboard/index.js +52 -0
- package/dist/node/docs/index.js +93 -0
- package/dist/node/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/node/example.js +39 -0
- package/dist/node/handlers/index.js +358 -0
- package/dist/node/handlers/saas.handlers.js +134 -0
- package/dist/node/index.js +3340 -0
- package/dist/node/presentations/index.js +290 -0
- package/dist/node/project/index.js +790 -0
- package/dist/node/project/project.entity.js +77 -0
- package/dist/node/project/project.enum.js +18 -0
- package/dist/node/project/project.event.js +103 -0
- package/dist/node/project/project.handler.js +178 -0
- package/dist/node/project/project.operations.js +372 -0
- package/dist/node/project/project.presentation.js +177 -0
- package/dist/node/project/project.schema.js +134 -0
- package/dist/node/saas-boilerplate.feature.js +88 -0
- package/dist/node/seeders/index.js +20 -0
- package/dist/node/settings/index.js +75 -0
- package/dist/node/settings/settings.entity.js +74 -0
- package/dist/node/settings/settings.enum.js +11 -0
- package/dist/node/shared/mock-data.js +104 -0
- package/dist/node/shared/overlay-types.js +0 -0
- package/dist/node/tests/operations.test-spec.js +112 -0
- package/dist/node/ui/SaasDashboard.js +988 -0
- package/dist/node/ui/SaasProjectList.js +162 -0
- package/dist/node/ui/SaasSettingsPanel.js +145 -0
- package/dist/node/ui/hooks/index.js +159 -0
- package/dist/node/ui/hooks/useProjectList.js +66 -0
- package/dist/node/ui/hooks/useProjectMutations.js +91 -0
- package/dist/node/ui/index.js +1808 -0
- package/dist/node/ui/modals/CreateProjectModal.js +153 -0
- package/dist/node/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/node/ui/modals/index.js +487 -0
- package/dist/node/ui/overlays/demo-overlays.js +61 -0
- package/dist/node/ui/overlays/index.js +61 -0
- package/dist/node/ui/renderers/index.js +675 -0
- package/dist/node/ui/renderers/project-list.markdown.js +499 -0
- package/dist/node/ui/renderers/project-list.renderer.js +177 -0
- package/dist/presentations/index.d.ts +13 -14
- package/dist/presentations/index.d.ts.map +1 -1
- package/dist/presentations/index.js +289 -15
- package/dist/project/index.d.ts +11 -8
- package/dist/project/index.d.ts.map +1 -0
- package/dist/project/index.js +791 -9
- package/dist/project/project.entity.d.ts +23 -28
- package/dist/project/project.entity.d.ts.map +1 -1
- package/dist/project/project.entity.js +75 -82
- package/dist/project/project.enum.d.ts +2 -7
- package/dist/project/project.enum.d.ts.map +1 -1
- package/dist/project/project.enum.js +16 -23
- package/dist/project/project.event.d.ts +69 -75
- package/dist/project/project.event.d.ts.map +1 -1
- package/dist/project/project.event.js +95 -156
- package/dist/project/project.handler.d.ts +44 -47
- package/dist/project/project.handler.d.ts.map +1 -1
- package/dist/project/project.handler.js +168 -71
- package/dist/project/project.operations.d.ts +341 -347
- package/dist/project/project.operations.d.ts.map +1 -1
- package/dist/project/project.operations.js +366 -253
- package/dist/project/project.presentation.d.ts +2 -7
- package/dist/project/project.presentation.d.ts.map +1 -1
- package/dist/project/project.presentation.js +174 -61
- package/dist/project/project.schema.d.ts +191 -196
- package/dist/project/project.schema.d.ts.map +1 -1
- package/dist/project/project.schema.js +125 -205
- package/dist/saas-boilerplate.feature.d.ts +1 -6
- package/dist/saas-boilerplate.feature.d.ts.map +1 -1
- package/dist/saas-boilerplate.feature.js +87 -206
- package/dist/seeders/index.d.ts +4 -8
- package/dist/seeders/index.d.ts.map +1 -1
- package/dist/seeders/index.js +18 -16
- package/dist/settings/index.d.ts +6 -3
- package/dist/settings/index.d.ts.map +1 -0
- package/dist/settings/index.js +75 -3
- package/dist/settings/settings.entity.d.ts +23 -28
- package/dist/settings/settings.entity.d.ts.map +1 -1
- package/dist/settings/settings.entity.js +72 -75
- package/dist/settings/settings.enum.d.ts +1 -6
- package/dist/settings/settings.enum.d.ts.map +1 -1
- package/dist/settings/settings.enum.js +10 -19
- package/dist/shared/mock-data.d.ts +74 -77
- package/dist/shared/mock-data.d.ts.map +1 -1
- package/dist/shared/mock-data.js +102 -135
- package/dist/shared/overlay-types.d.ts +25 -28
- package/dist/shared/overlay-types.d.ts.map +1 -1
- package/dist/shared/overlay-types.js +1 -0
- package/dist/tests/operations.test-spec.d.ts +4 -9
- package/dist/tests/operations.test-spec.d.ts.map +1 -1
- package/dist/tests/operations.test-spec.js +108 -118
- package/dist/ui/SaasDashboard.d.ts +1 -6
- package/dist/ui/SaasDashboard.d.ts.map +1 -1
- package/dist/ui/SaasDashboard.js +977 -286
- package/dist/ui/SaasProjectList.d.ts +4 -11
- package/dist/ui/SaasProjectList.d.ts.map +1 -1
- package/dist/ui/SaasProjectList.js +159 -72
- package/dist/ui/SaasSettingsPanel.d.ts +1 -6
- package/dist/ui/SaasSettingsPanel.d.ts.map +1 -1
- package/dist/ui/SaasSettingsPanel.js +142 -134
- package/dist/ui/hooks/index.d.ts +3 -3
- package/dist/ui/hooks/index.d.ts.map +1 -0
- package/dist/ui/hooks/index.js +158 -4
- package/dist/ui/hooks/useProjectList.d.ts +26 -30
- package/dist/ui/hooks/useProjectList.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectList.js +63 -71
- package/dist/ui/hooks/useProjectMutations.d.ts +20 -24
- package/dist/ui/hooks/useProjectMutations.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectMutations.js +88 -142
- package/dist/ui/index.d.ts +8 -14
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +1809 -15
- package/dist/ui/modals/CreateProjectModal.d.ts +10 -19
- package/dist/ui/modals/CreateProjectModal.d.ts.map +1 -1
- package/dist/ui/modals/CreateProjectModal.js +150 -135
- package/dist/ui/modals/ProjectActionsModal.d.ts +20 -33
- package/dist/ui/modals/ProjectActionsModal.d.ts.map +1 -1
- package/dist/ui/modals/ProjectActionsModal.js +333 -289
- package/dist/ui/modals/index.d.ts +3 -3
- package/dist/ui/modals/index.d.ts.map +1 -0
- package/dist/ui/modals/index.js +487 -3
- package/dist/ui/overlays/demo-overlays.d.ts +10 -8
- package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
- package/dist/ui/overlays/demo-overlays.js +60 -68
- package/dist/ui/overlays/index.d.ts +2 -2
- package/dist/ui/overlays/index.d.ts.map +1 -0
- package/dist/ui/overlays/index.js +62 -3
- package/dist/ui/renderers/index.d.ts +3 -3
- package/dist/ui/renderers/index.d.ts.map +1 -0
- package/dist/ui/renderers/index.js +675 -3
- package/dist/ui/renderers/project-list.markdown.d.ts +15 -14
- package/dist/ui/renderers/project-list.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.markdown.js +496 -146
- package/dist/ui/renderers/project-list.renderer.d.ts +6 -7
- package/dist/ui/renderers/project-list.renderer.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.renderer.js +176 -15
- package/package.json +508 -98
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$bundle.log +0 -180
- package/dist/billing/billing.entity.js.map +0 -1
- package/dist/billing/billing.enum.js.map +0 -1
- package/dist/billing/billing.event.js.map +0 -1
- package/dist/billing/billing.handler.js.map +0 -1
- package/dist/billing/billing.operations.js.map +0 -1
- package/dist/billing/billing.presentation.js.map +0 -1
- package/dist/billing/billing.schema.js.map +0 -1
- package/dist/dashboard/dashboard.presentation.js.map +0 -1
- package/dist/docs/saas-boilerplate.docblock.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/saas.handlers.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/presentations/index.js.map +0 -1
- package/dist/project/project.entity.js.map +0 -1
- package/dist/project/project.enum.js.map +0 -1
- package/dist/project/project.event.js.map +0 -1
- package/dist/project/project.handler.js.map +0 -1
- package/dist/project/project.operations.js.map +0 -1
- package/dist/project/project.presentation.js.map +0 -1
- package/dist/project/project.schema.js.map +0 -1
- package/dist/saas-boilerplate.feature.js.map +0 -1
- package/dist/seeders/index.js.map +0 -1
- package/dist/settings/settings.entity.js.map +0 -1
- package/dist/settings/settings.enum.js.map +0 -1
- package/dist/shared/mock-data.js.map +0 -1
- package/dist/tests/operations.test-spec.js.map +0 -1
- package/dist/ui/SaasDashboard.js.map +0 -1
- package/dist/ui/SaasProjectList.js.map +0 -1
- package/dist/ui/SaasSettingsPanel.js.map +0 -1
- package/dist/ui/hooks/useProjectList.js.map +0 -1
- package/dist/ui/hooks/useProjectMutations.js.map +0 -1
- package/dist/ui/modals/CreateProjectModal.js.map +0 -1
- package/dist/ui/modals/ProjectActionsModal.js.map +0 -1
- package/dist/ui/overlays/demo-overlays.js.map +0 -1
- package/dist/ui/renderers/project-list.markdown.js.map +0 -1
- package/dist/ui/renderers/project-list.renderer.js.map +0 -1
- 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.
|
|
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
|
-
".": "./
|
|
9
|
-
"./billing": "./
|
|
10
|
-
"./billing/billing.entity": "./
|
|
11
|
-
"./billing/billing.enum": "./
|
|
12
|
-
"./billing/billing.event": "./
|
|
13
|
-
"./billing/billing.handler": "./
|
|
14
|
-
"./billing/billing.operations": "./
|
|
15
|
-
"./billing/billing.presentation": "./
|
|
16
|
-
"./billing/billing.schema": "./
|
|
17
|
-
"./
|
|
18
|
-
"./dashboard
|
|
19
|
-
"./
|
|
20
|
-
"./
|
|
21
|
-
"./
|
|
22
|
-
"./
|
|
23
|
-
"./
|
|
24
|
-
"./
|
|
25
|
-
"./
|
|
26
|
-
"./
|
|
27
|
-
"./
|
|
28
|
-
"./
|
|
29
|
-
"./
|
|
30
|
-
"./project
|
|
31
|
-
"./project/
|
|
32
|
-
"./project/project.
|
|
33
|
-
"./
|
|
34
|
-
"./
|
|
35
|
-
"./
|
|
36
|
-
"./
|
|
37
|
-
"./
|
|
38
|
-
"./
|
|
39
|
-
"./
|
|
40
|
-
"./
|
|
41
|
-
"./
|
|
42
|
-
"./
|
|
43
|
-
"./
|
|
44
|
-
"./
|
|
45
|
-
"./
|
|
46
|
-
"./
|
|
47
|
-
"./
|
|
48
|
-
"./
|
|
49
|
-
"./ui
|
|
50
|
-
"./ui/
|
|
51
|
-
"./ui/
|
|
52
|
-
"./ui/
|
|
53
|
-
"./ui/
|
|
54
|
-
"./ui/
|
|
55
|
-
"./ui/
|
|
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:
|
|
62
|
-
"build:bundle": "
|
|
63
|
-
"build:types": "
|
|
64
|
-
"dev": "bun
|
|
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.
|
|
73
|
-
"@contractspec/lib.jobs": "1.
|
|
74
|
-
"@contractspec/module.audit-trail": "1.
|
|
75
|
-
"@contractspec/module.notifications": "1.
|
|
76
|
-
"@contractspec/lib.contracts": "1.
|
|
77
|
-
"@contractspec/lib.schema": "1.
|
|
78
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
79
|
-
"@contractspec/lib.design-system": "1.
|
|
80
|
-
"@contractspec/lib.runtime-sandbox": "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.
|
|
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
|
-
".":
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"./billing
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"./
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
"./
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
"./
|
|
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"
|