@contractspec/module.notifications 1.59.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 +83 -17
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/module.notifications",
3
- "version": "1.59.0",
3
+ "version": "1.60.0",
4
4
  "description": "Notification center module for ContractSpec applications",
5
5
  "keywords": [
6
6
  "contractspec",
@@ -27,28 +27,94 @@
27
27
  "typecheck": "tsc --noEmit"
28
28
  },
29
29
  "dependencies": {
30
- "@contractspec/lib.schema": "1.59.0",
31
- "@contractspec/lib.contracts": "1.59.0",
32
- "@contractspec/lib.bus": "1.59.0",
30
+ "@contractspec/lib.schema": "1.60.0",
31
+ "@contractspec/lib.contracts": "1.60.0",
32
+ "@contractspec/lib.bus": "1.60.0",
33
33
  "zod": "^4.3.5"
34
34
  },
35
35
  "devDependencies": {
36
- "@contractspec/tool.typescript": "1.59.0",
36
+ "@contractspec/tool.typescript": "1.60.0",
37
37
  "typescript": "^5.9.3",
38
- "@contractspec/tool.bun": "1.58.0"
38
+ "@contractspec/tool.bun": "1.59.0"
39
39
  },
40
40
  "exports": {
41
- ".": "./src/index.ts",
42
- "./channels": "./src/channels/index.ts",
43
- "./channels/index": "./src/channels/index.ts",
44
- "./contracts": "./src/contracts/index.ts",
45
- "./contracts/index": "./src/contracts/index.ts",
46
- "./entities": "./src/entities/index.ts",
47
- "./entities/index": "./src/entities/index.ts",
48
- "./notifications.capability": "./src/notifications.capability.ts",
49
- "./notifications.feature": "./src/notifications.feature.ts",
50
- "./templates": "./src/templates/index.ts",
51
- "./templates/index": "./src/templates/index.ts"
41
+ ".": {
42
+ "types": "./dist/index.d.ts",
43
+ "bun": "./dist/index.js",
44
+ "node": "./dist/node/index.mjs",
45
+ "browser": "./dist/browser/index.js",
46
+ "default": "./dist/index.js"
47
+ },
48
+ "./channels": {
49
+ "types": "./dist/channels/index.d.ts",
50
+ "bun": "./dist/channels/index.js",
51
+ "node": "./dist/node/channels/index.mjs",
52
+ "browser": "./dist/browser/channels/index.js",
53
+ "default": "./dist/channels/index.js"
54
+ },
55
+ "./channels/index": {
56
+ "types": "./dist/channels/index.d.ts",
57
+ "bun": "./dist/channels/index.js",
58
+ "node": "./dist/node/channels/index.mjs",
59
+ "browser": "./dist/browser/channels/index.js",
60
+ "default": "./dist/channels/index.js"
61
+ },
62
+ "./contracts": {
63
+ "types": "./dist/contracts/index.d.ts",
64
+ "bun": "./dist/contracts/index.js",
65
+ "node": "./dist/node/contracts/index.mjs",
66
+ "browser": "./dist/browser/contracts/index.js",
67
+ "default": "./dist/contracts/index.js"
68
+ },
69
+ "./contracts/index": {
70
+ "types": "./dist/contracts/index.d.ts",
71
+ "bun": "./dist/contracts/index.js",
72
+ "node": "./dist/node/contracts/index.mjs",
73
+ "browser": "./dist/browser/contracts/index.js",
74
+ "default": "./dist/contracts/index.js"
75
+ },
76
+ "./entities": {
77
+ "types": "./dist/entities/index.d.ts",
78
+ "bun": "./dist/entities/index.js",
79
+ "node": "./dist/node/entities/index.mjs",
80
+ "browser": "./dist/browser/entities/index.js",
81
+ "default": "./dist/entities/index.js"
82
+ },
83
+ "./entities/index": {
84
+ "types": "./dist/entities/index.d.ts",
85
+ "bun": "./dist/entities/index.js",
86
+ "node": "./dist/node/entities/index.mjs",
87
+ "browser": "./dist/browser/entities/index.js",
88
+ "default": "./dist/entities/index.js"
89
+ },
90
+ "./notifications.capability": {
91
+ "types": "./dist/notifications.capability.d.ts",
92
+ "bun": "./dist/notifications.capability.js",
93
+ "node": "./dist/node/notifications.capability.mjs",
94
+ "browser": "./dist/browser/notifications.capability.js",
95
+ "default": "./dist/notifications.capability.js"
96
+ },
97
+ "./notifications.feature": {
98
+ "types": "./dist/notifications.feature.d.ts",
99
+ "bun": "./dist/notifications.feature.js",
100
+ "node": "./dist/node/notifications.feature.mjs",
101
+ "browser": "./dist/browser/notifications.feature.js",
102
+ "default": "./dist/notifications.feature.js"
103
+ },
104
+ "./templates": {
105
+ "types": "./dist/templates/index.d.ts",
106
+ "bun": "./dist/templates/index.js",
107
+ "node": "./dist/node/templates/index.mjs",
108
+ "browser": "./dist/browser/templates/index.js",
109
+ "default": "./dist/templates/index.js"
110
+ },
111
+ "./templates/index": {
112
+ "types": "./dist/templates/index.d.ts",
113
+ "bun": "./dist/templates/index.js",
114
+ "node": "./dist/node/templates/index.mjs",
115
+ "browser": "./dist/browser/templates/index.js",
116
+ "default": "./dist/templates/index.js"
117
+ }
52
118
  },
53
119
  "files": [
54
120
  "dist",