@contractspec/module.ai-chat 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 +102 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/module.ai-chat",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "AI chat interface module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"typecheck": "tsc --noEmit"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@contractspec/lib.ai-agent": "1.
|
|
35
|
-
"@contractspec/lib.ai-providers": "1.
|
|
36
|
-
"@contractspec/lib.contracts": "1.
|
|
37
|
-
"@contractspec/lib.schema": "1.
|
|
38
|
-
"@contractspec/lib.metering": "1.
|
|
39
|
-
"@contractspec/lib.cost-tracking": "1.
|
|
40
|
-
"@contractspec/lib.design-system": "1.
|
|
41
|
-
"@contractspec/lib.ui-kit-web": "1.
|
|
34
|
+
"@contractspec/lib.ai-agent": "1.60.0",
|
|
35
|
+
"@contractspec/lib.ai-providers": "1.60.0",
|
|
36
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
37
|
+
"@contractspec/lib.schema": "1.60.0",
|
|
38
|
+
"@contractspec/lib.metering": "1.60.0",
|
|
39
|
+
"@contractspec/lib.cost-tracking": "1.60.0",
|
|
40
|
+
"@contractspec/lib.design-system": "1.60.0",
|
|
41
|
+
"@contractspec/lib.ui-kit-web": "1.60.0",
|
|
42
42
|
"@ai-sdk/react": "3.0.75",
|
|
43
43
|
"ai": "6.0.73",
|
|
44
44
|
"lucide-react": "^0.563.0",
|
|
@@ -46,28 +46,106 @@
|
|
|
46
46
|
"zod": "^4.3.5"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@contractspec/tool.typescript": "1.
|
|
49
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
50
50
|
"@types/react": "^19.2.13",
|
|
51
51
|
"typescript": "^5.9.3",
|
|
52
|
-
"@contractspec/tool.bun": "1.
|
|
52
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
55
|
"react": ">=19.2.4"
|
|
56
56
|
},
|
|
57
57
|
"exports": {
|
|
58
|
-
".":
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
"./
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
58
|
+
".": {
|
|
59
|
+
"types": "./dist/index.d.ts",
|
|
60
|
+
"bun": "./dist/index.js",
|
|
61
|
+
"node": "./dist/node/index.mjs",
|
|
62
|
+
"browser": "./dist/browser/index.js",
|
|
63
|
+
"default": "./dist/index.js"
|
|
64
|
+
},
|
|
65
|
+
"./context": {
|
|
66
|
+
"types": "./dist/context/index.d.ts",
|
|
67
|
+
"bun": "./dist/context/index.js",
|
|
68
|
+
"node": "./dist/node/context/index.mjs",
|
|
69
|
+
"browser": "./dist/browser/context/index.js",
|
|
70
|
+
"default": "./dist/context/index.js"
|
|
71
|
+
},
|
|
72
|
+
"./context/index": {
|
|
73
|
+
"types": "./dist/context/index.d.ts",
|
|
74
|
+
"bun": "./dist/context/index.js",
|
|
75
|
+
"node": "./dist/node/context/index.mjs",
|
|
76
|
+
"browser": "./dist/browser/context/index.js",
|
|
77
|
+
"default": "./dist/context/index.js"
|
|
78
|
+
},
|
|
79
|
+
"./core": {
|
|
80
|
+
"types": "./dist/core/index.d.ts",
|
|
81
|
+
"bun": "./dist/core/index.js",
|
|
82
|
+
"node": "./dist/node/core/index.mjs",
|
|
83
|
+
"browser": "./dist/browser/core/index.js",
|
|
84
|
+
"default": "./dist/core/index.js"
|
|
85
|
+
},
|
|
86
|
+
"./core/index": {
|
|
87
|
+
"types": "./dist/core/index.d.ts",
|
|
88
|
+
"bun": "./dist/core/index.js",
|
|
89
|
+
"node": "./dist/node/core/index.mjs",
|
|
90
|
+
"browser": "./dist/browser/core/index.js",
|
|
91
|
+
"default": "./dist/core/index.js"
|
|
92
|
+
},
|
|
93
|
+
"./presentation": {
|
|
94
|
+
"types": "./dist/presentation/index.d.ts",
|
|
95
|
+
"bun": "./dist/presentation/index.js",
|
|
96
|
+
"node": "./dist/node/presentation/index.mjs",
|
|
97
|
+
"browser": "./dist/browser/presentation/index.js",
|
|
98
|
+
"default": "./dist/presentation/index.js"
|
|
99
|
+
},
|
|
100
|
+
"./presentation/components": {
|
|
101
|
+
"types": "./dist/presentation/components/index.d.ts",
|
|
102
|
+
"bun": "./dist/presentation/components/index.js",
|
|
103
|
+
"node": "./dist/node/presentation/components/index.mjs",
|
|
104
|
+
"browser": "./dist/browser/presentation/components/index.js",
|
|
105
|
+
"default": "./dist/presentation/components/index.js"
|
|
106
|
+
},
|
|
107
|
+
"./presentation/components/index": {
|
|
108
|
+
"types": "./dist/presentation/components/index.d.ts",
|
|
109
|
+
"bun": "./dist/presentation/components/index.js",
|
|
110
|
+
"node": "./dist/node/presentation/components/index.mjs",
|
|
111
|
+
"browser": "./dist/browser/presentation/components/index.js",
|
|
112
|
+
"default": "./dist/presentation/components/index.js"
|
|
113
|
+
},
|
|
114
|
+
"./presentation/hooks": {
|
|
115
|
+
"types": "./dist/presentation/hooks/index.d.ts",
|
|
116
|
+
"bun": "./dist/presentation/hooks/index.js",
|
|
117
|
+
"node": "./dist/node/presentation/hooks/index.mjs",
|
|
118
|
+
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
119
|
+
"default": "./dist/presentation/hooks/index.js"
|
|
120
|
+
},
|
|
121
|
+
"./presentation/hooks/index": {
|
|
122
|
+
"types": "./dist/presentation/hooks/index.d.ts",
|
|
123
|
+
"bun": "./dist/presentation/hooks/index.js",
|
|
124
|
+
"node": "./dist/node/presentation/hooks/index.mjs",
|
|
125
|
+
"browser": "./dist/browser/presentation/hooks/index.js",
|
|
126
|
+
"default": "./dist/presentation/hooks/index.js"
|
|
127
|
+
},
|
|
128
|
+
"./presentation/index": {
|
|
129
|
+
"types": "./dist/presentation/index.d.ts",
|
|
130
|
+
"bun": "./dist/presentation/index.js",
|
|
131
|
+
"node": "./dist/node/presentation/index.mjs",
|
|
132
|
+
"browser": "./dist/browser/presentation/index.js",
|
|
133
|
+
"default": "./dist/presentation/index.js"
|
|
134
|
+
},
|
|
135
|
+
"./providers": {
|
|
136
|
+
"types": "./dist/providers/index.d.ts",
|
|
137
|
+
"bun": "./dist/providers/index.js",
|
|
138
|
+
"node": "./dist/node/providers/index.mjs",
|
|
139
|
+
"browser": "./dist/browser/providers/index.js",
|
|
140
|
+
"default": "./dist/providers/index.js"
|
|
141
|
+
},
|
|
142
|
+
"./providers/index": {
|
|
143
|
+
"types": "./dist/providers/index.d.ts",
|
|
144
|
+
"bun": "./dist/providers/index.js",
|
|
145
|
+
"node": "./dist/node/providers/index.mjs",
|
|
146
|
+
"browser": "./dist/browser/providers/index.js",
|
|
147
|
+
"default": "./dist/providers/index.js"
|
|
148
|
+
}
|
|
71
149
|
},
|
|
72
150
|
"publishConfig": {
|
|
73
151
|
"access": "public",
|