@contractspec/example.wealth-snapshot 1.58.0 → 1.60.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +120 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.wealth-snapshot",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Wealth Snapshot mini-app for accounts, assets, liabilities, and goals",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -19,34 +19,130 @@
|
|
|
19
19
|
"typecheck": "tsc --noEmit"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@contractspec/lib.identity-rbac": "1.
|
|
23
|
-
"@contractspec/lib.schema": "1.
|
|
24
|
-
"@contractspec/lib.contracts": "1.
|
|
25
|
-
"@contractspec/module.audit-trail": "1.
|
|
26
|
-
"@contractspec/module.notifications": "1.
|
|
22
|
+
"@contractspec/lib.identity-rbac": "1.60.0",
|
|
23
|
+
"@contractspec/lib.schema": "1.60.0",
|
|
24
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
25
|
+
"@contractspec/module.audit-trail": "1.60.0",
|
|
26
|
+
"@contractspec/module.notifications": "1.60.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@contractspec/tool.typescript": "1.
|
|
29
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
30
30
|
"typescript": "^5.9.3",
|
|
31
|
-
"@contractspec/tool.bun": "1.
|
|
31
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
32
32
|
},
|
|
33
33
|
"exports": {
|
|
34
|
-
".":
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"./
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"./
|
|
49
|
-
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"bun": "./dist/index.js",
|
|
37
|
+
"node": "./dist/node/index.mjs",
|
|
38
|
+
"browser": "./dist/browser/index.js",
|
|
39
|
+
"default": "./dist/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./docs": {
|
|
42
|
+
"types": "./dist/docs/index.d.ts",
|
|
43
|
+
"bun": "./dist/docs/index.js",
|
|
44
|
+
"node": "./dist/node/docs/index.mjs",
|
|
45
|
+
"browser": "./dist/browser/docs/index.js",
|
|
46
|
+
"default": "./dist/docs/index.js"
|
|
47
|
+
},
|
|
48
|
+
"./docs/index": {
|
|
49
|
+
"types": "./dist/docs/index.d.ts",
|
|
50
|
+
"bun": "./dist/docs/index.js",
|
|
51
|
+
"node": "./dist/node/docs/index.mjs",
|
|
52
|
+
"browser": "./dist/browser/docs/index.js",
|
|
53
|
+
"default": "./dist/docs/index.js"
|
|
54
|
+
},
|
|
55
|
+
"./docs/wealth-snapshot.docblock": {
|
|
56
|
+
"types": "./dist/docs/wealth-snapshot.docblock.d.ts",
|
|
57
|
+
"bun": "./dist/docs/wealth-snapshot.docblock.js",
|
|
58
|
+
"node": "./dist/node/docs/wealth-snapshot.docblock.mjs",
|
|
59
|
+
"browser": "./dist/browser/docs/wealth-snapshot.docblock.js",
|
|
60
|
+
"default": "./dist/docs/wealth-snapshot.docblock.js"
|
|
61
|
+
},
|
|
62
|
+
"./entities": {
|
|
63
|
+
"types": "./dist/entities/index.d.ts",
|
|
64
|
+
"bun": "./dist/entities/index.js",
|
|
65
|
+
"node": "./dist/node/entities/index.mjs",
|
|
66
|
+
"browser": "./dist/browser/entities/index.js",
|
|
67
|
+
"default": "./dist/entities/index.js"
|
|
68
|
+
},
|
|
69
|
+
"./entities/index": {
|
|
70
|
+
"types": "./dist/entities/index.d.ts",
|
|
71
|
+
"bun": "./dist/entities/index.js",
|
|
72
|
+
"node": "./dist/node/entities/index.mjs",
|
|
73
|
+
"browser": "./dist/browser/entities/index.js",
|
|
74
|
+
"default": "./dist/entities/index.js"
|
|
75
|
+
},
|
|
76
|
+
"./events": {
|
|
77
|
+
"types": "./dist/events.d.ts",
|
|
78
|
+
"bun": "./dist/events.js",
|
|
79
|
+
"node": "./dist/node/events.mjs",
|
|
80
|
+
"browser": "./dist/browser/events.js",
|
|
81
|
+
"default": "./dist/events.js"
|
|
82
|
+
},
|
|
83
|
+
"./example": {
|
|
84
|
+
"types": "./dist/example.d.ts",
|
|
85
|
+
"bun": "./dist/example.js",
|
|
86
|
+
"node": "./dist/node/example.mjs",
|
|
87
|
+
"browser": "./dist/browser/example.js",
|
|
88
|
+
"default": "./dist/example.js"
|
|
89
|
+
},
|
|
90
|
+
"./handlers": {
|
|
91
|
+
"types": "./dist/handlers/index.d.ts",
|
|
92
|
+
"bun": "./dist/handlers/index.js",
|
|
93
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
94
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
95
|
+
"default": "./dist/handlers/index.js"
|
|
96
|
+
},
|
|
97
|
+
"./handlers/index": {
|
|
98
|
+
"types": "./dist/handlers/index.d.ts",
|
|
99
|
+
"bun": "./dist/handlers/index.js",
|
|
100
|
+
"node": "./dist/node/handlers/index.mjs",
|
|
101
|
+
"browser": "./dist/browser/handlers/index.js",
|
|
102
|
+
"default": "./dist/handlers/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./operations": {
|
|
105
|
+
"types": "./dist/operations/index.d.ts",
|
|
106
|
+
"bun": "./dist/operations/index.js",
|
|
107
|
+
"node": "./dist/node/operations/index.mjs",
|
|
108
|
+
"browser": "./dist/browser/operations/index.js",
|
|
109
|
+
"default": "./dist/operations/index.js"
|
|
110
|
+
},
|
|
111
|
+
"./operations/index": {
|
|
112
|
+
"types": "./dist/operations/index.d.ts",
|
|
113
|
+
"bun": "./dist/operations/index.js",
|
|
114
|
+
"node": "./dist/node/operations/index.mjs",
|
|
115
|
+
"browser": "./dist/browser/operations/index.js",
|
|
116
|
+
"default": "./dist/operations/index.js"
|
|
117
|
+
},
|
|
118
|
+
"./presentations": {
|
|
119
|
+
"types": "./dist/presentations.d.ts",
|
|
120
|
+
"bun": "./dist/presentations.js",
|
|
121
|
+
"node": "./dist/node/presentations.mjs",
|
|
122
|
+
"browser": "./dist/browser/presentations.js",
|
|
123
|
+
"default": "./dist/presentations.js"
|
|
124
|
+
},
|
|
125
|
+
"./presentations/index": {
|
|
126
|
+
"types": "./dist/presentations/index.d.ts",
|
|
127
|
+
"bun": "./dist/presentations/index.js",
|
|
128
|
+
"node": "./dist/node/presentations/index.mjs",
|
|
129
|
+
"browser": "./dist/browser/presentations/index.js",
|
|
130
|
+
"default": "./dist/presentations/index.js"
|
|
131
|
+
},
|
|
132
|
+
"./wealth-snapshot.capability": {
|
|
133
|
+
"types": "./dist/wealth-snapshot.capability.d.ts",
|
|
134
|
+
"bun": "./dist/wealth-snapshot.capability.js",
|
|
135
|
+
"node": "./dist/node/wealth-snapshot.capability.mjs",
|
|
136
|
+
"browser": "./dist/browser/wealth-snapshot.capability.js",
|
|
137
|
+
"default": "./dist/wealth-snapshot.capability.js"
|
|
138
|
+
},
|
|
139
|
+
"./wealth-snapshot.feature": {
|
|
140
|
+
"types": "./dist/wealth-snapshot.feature.d.ts",
|
|
141
|
+
"bun": "./dist/wealth-snapshot.feature.js",
|
|
142
|
+
"node": "./dist/node/wealth-snapshot.feature.mjs",
|
|
143
|
+
"browser": "./dist/browser/wealth-snapshot.feature.js",
|
|
144
|
+
"default": "./dist/wealth-snapshot.feature.js"
|
|
145
|
+
}
|
|
50
146
|
},
|
|
51
147
|
"files": [
|
|
52
148
|
"dist",
|