@ai-matrx/kit 0.5.0 → 0.5.1
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/CHANGELOG.md +12 -0
- package/dist/confirm-opener.cjs +68 -0
- package/dist/confirm-opener.cjs.map +1 -0
- package/dist/confirm-opener.d.cts +65 -0
- package/dist/confirm-opener.d.ts +65 -0
- package/dist/confirm-opener.js +45 -0
- package/dist/confirm-opener.js.map +1 -0
- package/dist/confirm.cjs +38 -30
- package/dist/confirm.cjs.map +1 -1
- package/dist/confirm.d.cts +8 -1
- package/dist/confirm.d.ts +8 -1
- package/dist/confirm.js +38 -30
- package/dist/confirm.js.map +1 -1
- package/dist/index.cjs +38 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +38 -30
- package/dist/index.js.map +1 -1
- package/package.json +12 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/kit",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "The always-include AI Matrx kit: the little primitives every Matrx app speaks — autosave that never loses a keystroke, stale-response guards, clipboard with graceful fallbacks — one per subpath, tree-shaken to what you use.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -130,6 +130,16 @@
|
|
|
130
130
|
"default": "./dist/confirm.cjs"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
|
+
"./confirm-opener": {
|
|
134
|
+
"import": {
|
|
135
|
+
"types": "./dist/confirm-opener.d.ts",
|
|
136
|
+
"default": "./dist/confirm-opener.js"
|
|
137
|
+
},
|
|
138
|
+
"require": {
|
|
139
|
+
"types": "./dist/confirm-opener.d.cts",
|
|
140
|
+
"default": "./dist/confirm-opener.cjs"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
133
143
|
"./toast": {
|
|
134
144
|
"import": {
|
|
135
145
|
"types": "./dist/toast.d.ts",
|
|
@@ -279,7 +289,7 @@
|
|
|
279
289
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
280
290
|
"check:package": "pnpm build && publint && pnpm verify:tarball",
|
|
281
291
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
282
|
-
"test": "vitest run",
|
|
292
|
+
"test": "NODE_OPTIONS=--no-experimental-webstorage vitest run",
|
|
283
293
|
"test:watch": "vitest",
|
|
284
294
|
"verify:tarball": "node ./scripts/verify-tarball.mjs"
|
|
285
295
|
}
|