@revealui/core 0.9.0 → 0.10.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/README.md +8 -0
- package/dist/client/admin/components/AdminDashboard.d.ts +7 -1
- package/dist/client/admin/components/AdminDashboard.d.ts.map +1 -1
- package/dist/client/admin/components/AdminDashboard.js +11 -11
- package/dist/client/admin/components/CollectionList.d.ts +2 -1
- package/dist/client/admin/components/CollectionList.d.ts.map +1 -1
- package/dist/client/admin/components/CollectionList.js +5 -5
- package/dist/client/admin/components/DocumentForm.d.ts +2 -1
- package/dist/client/admin/components/DocumentForm.d.ts.map +1 -1
- package/dist/client/admin/components/DocumentForm.js +16 -16
- package/dist/client/admin/components/GlobalForm.d.ts +2 -1
- package/dist/client/admin/components/GlobalForm.d.ts.map +1 -1
- package/dist/client/admin/components/GlobalForm.js +3 -3
- package/dist/client/admin/context/ServerFunctionContext.d.ts +1 -1
- package/dist/client/admin/context/ServerFunctionContext.d.ts.map +1 -1
- package/dist/client/admin/layout.d.ts +1 -1
- package/dist/client/admin/layout.d.ts.map +1 -1
- package/dist/client/admin/layout.js +5 -1
- package/dist/client/admin/page.d.ts +2 -2
- package/dist/client/admin/page.d.ts.map +1 -1
- package/dist/client/admin/page.js +10 -3
- package/dist/client/richtext/RichTextEditor.d.ts +1 -1
- package/dist/client/richtext/RichTextEditor.d.ts.map +1 -1
- package/dist/client/richtext/plugins/CollaborationPlugin.d.ts +1 -1
- package/dist/client/richtext/plugins/CollaborationPlugin.d.ts.map +1 -1
- package/dist/client/richtext/plugins/ToolbarPlugin.d.ts +1 -1
- package/dist/client/richtext/plugins/ToolbarPlugin.d.ts.map +1 -1
- package/dist/nextjs/withRevealUI.d.ts +7 -2
- package/dist/nextjs/withRevealUI.d.ts.map +1 -1
- package/dist/nextjs/withRevealUI.js +9 -99
- package/dist/revforge-license.d.ts +4 -2
- package/dist/revforge-license.d.ts.map +1 -1
- package/dist/revforge-license.js +21 -3
- package/dist/richtext/exports/server/rsc.d.ts +3 -3
- package/dist/richtext/exports/server/rsc.d.ts.map +1 -1
- package/dist/storage/_sigv4.d.ts +76 -0
- package/dist/storage/_sigv4.d.ts.map +1 -0
- package/dist/storage/_sigv4.js +134 -0
- package/dist/storage/_xml.d.ts +26 -0
- package/dist/storage/_xml.d.ts.map +1 -0
- package/dist/storage/_xml.js +75 -0
- package/dist/storage/r2.d.ts +14 -2
- package/dist/storage/r2.d.ts.map +1 -1
- package/dist/storage/r2.js +107 -44
- package/package.json +22 -23
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minimal, dependency-free readers for the two S3/R2 XML responses we consume:
|
|
3
|
+
* ListObjectsV2 results and `<Error>` bodies. Replaces the XML codec that
|
|
4
|
+
* @aws-sdk/client-s3 used to run for us.
|
|
5
|
+
*
|
|
6
|
+
* No regex (M2): a tag's text can never contain a raw `<` (XML escapes it to
|
|
7
|
+
* `<`), so `indexOf`-based tag scanning is unambiguous.
|
|
8
|
+
*/
|
|
9
|
+
/** First `<tag>…</tag>` text content at or after `from`, or undefined. */
|
|
10
|
+
function firstTagValue(xml, tag, from = 0) {
|
|
11
|
+
const open = `<${tag}>`;
|
|
12
|
+
const start = xml.indexOf(open, from);
|
|
13
|
+
if (start === -1)
|
|
14
|
+
return undefined;
|
|
15
|
+
const contentStart = start + open.length;
|
|
16
|
+
const end = xml.indexOf(`</${tag}>`, contentStart);
|
|
17
|
+
if (end === -1)
|
|
18
|
+
return undefined;
|
|
19
|
+
return xml.slice(contentStart, end);
|
|
20
|
+
}
|
|
21
|
+
/** Decode the five predefined XML entities (no regex). `&` is decoded last. */
|
|
22
|
+
function decodeXmlEntities(value) {
|
|
23
|
+
if (!value.includes('&'))
|
|
24
|
+
return value;
|
|
25
|
+
return value
|
|
26
|
+
.split('<')
|
|
27
|
+
.join('<')
|
|
28
|
+
.split('>')
|
|
29
|
+
.join('>')
|
|
30
|
+
.split('"')
|
|
31
|
+
.join('"')
|
|
32
|
+
.split(''')
|
|
33
|
+
.join("'")
|
|
34
|
+
.split('&')
|
|
35
|
+
.join('&');
|
|
36
|
+
}
|
|
37
|
+
/** Parse an S3 ListObjectsV2 XML response into the fields the R2 provider needs. */
|
|
38
|
+
export function parseListObjectsV2(xml) {
|
|
39
|
+
const objects = [];
|
|
40
|
+
const contentsOpen = '<Contents>';
|
|
41
|
+
const contentsClose = '</Contents>';
|
|
42
|
+
let cursor = 0;
|
|
43
|
+
for (;;) {
|
|
44
|
+
const start = xml.indexOf(contentsOpen, cursor);
|
|
45
|
+
if (start === -1)
|
|
46
|
+
break;
|
|
47
|
+
const end = xml.indexOf(contentsClose, start);
|
|
48
|
+
if (end === -1)
|
|
49
|
+
break;
|
|
50
|
+
const block = xml.slice(start + contentsOpen.length, end);
|
|
51
|
+
const key = firstTagValue(block, 'Key');
|
|
52
|
+
if (key !== undefined) {
|
|
53
|
+
const lastModified = firstTagValue(block, 'LastModified');
|
|
54
|
+
objects.push({
|
|
55
|
+
key: decodeXmlEntities(key),
|
|
56
|
+
size: Number(firstTagValue(block, 'Size') ?? '0') || 0,
|
|
57
|
+
lastModified: lastModified ? new Date(lastModified) : new Date(0),
|
|
58
|
+
});
|
|
59
|
+
}
|
|
60
|
+
cursor = end + contentsClose.length;
|
|
61
|
+
}
|
|
62
|
+
const token = firstTagValue(xml, 'NextContinuationToken');
|
|
63
|
+
return {
|
|
64
|
+
objects,
|
|
65
|
+
isTruncated: firstTagValue(xml, 'IsTruncated') === 'true',
|
|
66
|
+
nextContinuationToken: token !== undefined ? decodeXmlEntities(token) : undefined,
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
/** Extract `<Code>`/`<Message>` from an S3 `<Error>` response for diagnostics. */
|
|
70
|
+
export function s3ErrorFields(xml) {
|
|
71
|
+
return {
|
|
72
|
+
code: firstTagValue(xml, 'Code'),
|
|
73
|
+
message: firstTagValue(xml, 'Message'),
|
|
74
|
+
};
|
|
75
|
+
}
|
package/dist/storage/r2.d.ts
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Cloudflare R2 implementation of StorageProvider.
|
|
3
3
|
*
|
|
4
|
-
* R2 is S3-compatible
|
|
5
|
-
*
|
|
4
|
+
* R2 is S3-compatible. This is a native client: AWS SigV4 request signing
|
|
5
|
+
* (./_sigv4.ts, verified against AWS's official test vector) over global
|
|
6
|
+
* `fetch`, plus a small XML reader for ListObjectsV2 (./_xml.ts). No SDK
|
|
7
|
+
* dependency — only node:crypto + fetch.
|
|
8
|
+
*
|
|
9
|
+
* Path-style addressing is used for the S3 API calls
|
|
10
|
+
* (https://<account>.r2.cloudflarestorage.com/<bucket>/<key>); this has no
|
|
11
|
+
* effect on the public object URLs, which are built from `publicBaseUrl`.
|
|
6
12
|
*
|
|
7
13
|
* GAP-208 Phase 2a (2026-05-18). Phase 1 (interface + types) shipped in #959.
|
|
14
|
+
* Native client (dropping @aws-sdk/client-s3) landed 2026-06-09.
|
|
8
15
|
*
|
|
9
16
|
* Server-only. Do NOT import from client-side code or edge runtime.
|
|
17
|
+
*
|
|
18
|
+
* Known limitation (unchanged from the SDK version): request bodies are
|
|
19
|
+
* buffered fully in memory (see toUint8Array) so the payload can be hashed for
|
|
20
|
+
* SigV4. Streaming uploads (STREAMING-AWS4-HMAC-SHA256-PAYLOAD) are a future
|
|
21
|
+
* enhancement; presigned/private URLs remain Phase 2b.
|
|
10
22
|
*/
|
|
11
23
|
import type { R2Config, StorageProvider } from './types.js';
|
|
12
24
|
export declare function createR2Provider(config: R2Config): StorageProvider;
|
package/dist/storage/r2.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"r2.d.ts","sourceRoot":"","sources":["../../src/storage/r2.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"r2.d.ts","sourceRoot":"","sources":["../../src/storage/r2.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAKH,OAAO,KAAK,EAMV,QAAQ,EACR,eAAe,EAChB,MAAM,YAAY,CAAC;AAkKpB,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,QAAQ,GAAG,eAAe,CAElE"}
|
package/dist/storage/r2.js
CHANGED
|
@@ -1,21 +1,37 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Cloudflare R2 implementation of StorageProvider.
|
|
3
3
|
*
|
|
4
|
-
* R2 is S3-compatible
|
|
5
|
-
*
|
|
4
|
+
* R2 is S3-compatible. This is a native client: AWS SigV4 request signing
|
|
5
|
+
* (./_sigv4.ts, verified against AWS's official test vector) over global
|
|
6
|
+
* `fetch`, plus a small XML reader for ListObjectsV2 (./_xml.ts). No SDK
|
|
7
|
+
* dependency — only node:crypto + fetch.
|
|
8
|
+
*
|
|
9
|
+
* Path-style addressing is used for the S3 API calls
|
|
10
|
+
* (https://<account>.r2.cloudflarestorage.com/<bucket>/<key>); this has no
|
|
11
|
+
* effect on the public object URLs, which are built from `publicBaseUrl`.
|
|
6
12
|
*
|
|
7
13
|
* GAP-208 Phase 2a (2026-05-18). Phase 1 (interface + types) shipped in #959.
|
|
14
|
+
* Native client (dropping @aws-sdk/client-s3) landed 2026-06-09.
|
|
8
15
|
*
|
|
9
16
|
* Server-only. Do NOT import from client-side code or edge runtime.
|
|
17
|
+
*
|
|
18
|
+
* Known limitation (unchanged from the SDK version): request bodies are
|
|
19
|
+
* buffered fully in memory (see toUint8Array) so the payload can be hashed for
|
|
20
|
+
* SigV4. Streaming uploads (STREAMING-AWS4-HMAC-SHA256-PAYLOAD) are a future
|
|
21
|
+
* enhancement; presigned/private URLs remain Phase 2b.
|
|
10
22
|
*/
|
|
11
|
-
import { DeleteObjectCommand, ListObjectsV2Command, PutObjectCommand, S3Client, } from '@aws-sdk/client-s3';
|
|
12
23
|
import { toUint8Array } from './_helpers.js';
|
|
24
|
+
import { EMPTY_SHA256, sha256Hex, signS3Request } from './_sigv4.js';
|
|
25
|
+
import { parseListObjectsV2, s3ErrorFields } from './_xml.js';
|
|
13
26
|
const PROVIDER_TAG = 'r2';
|
|
14
27
|
const DEFAULT_CONTENT_TYPE = 'application/octet-stream';
|
|
15
28
|
const DEFAULT_LIST_LIMIT = 1000;
|
|
29
|
+
const REGION = 'auto';
|
|
16
30
|
class R2Provider {
|
|
17
31
|
provider = PROVIDER_TAG;
|
|
18
|
-
|
|
32
|
+
accountId;
|
|
33
|
+
accessKeyId;
|
|
34
|
+
secretAccessKey;
|
|
19
35
|
bucket;
|
|
20
36
|
publicBaseUrl;
|
|
21
37
|
constructor(config) {
|
|
@@ -25,16 +41,11 @@ class R2Provider {
|
|
|
25
41
|
"custom domain (e.g. 'https://media.revealui.com') or the R2 dev URL " +
|
|
26
42
|
"('https://<account-id>.r2.cloudflarestorage.com/<bucket>').");
|
|
27
43
|
}
|
|
44
|
+
this.accountId = config.accountId;
|
|
45
|
+
this.accessKeyId = config.accessKeyId;
|
|
46
|
+
this.secretAccessKey = config.secretAccessKey;
|
|
28
47
|
this.bucket = config.bucket;
|
|
29
48
|
this.publicBaseUrl = stripTrailingSlash(config.publicBaseUrl);
|
|
30
|
-
this.client = new S3Client({
|
|
31
|
-
region: 'auto',
|
|
32
|
-
endpoint: `https://${config.accountId}.r2.cloudflarestorage.com`,
|
|
33
|
-
credentials: {
|
|
34
|
-
accessKeyId: config.accessKeyId,
|
|
35
|
-
secretAccessKey: config.secretAccessKey,
|
|
36
|
-
},
|
|
37
|
-
});
|
|
38
49
|
}
|
|
39
50
|
async put(key, data, opts) {
|
|
40
51
|
if (opts?.access === 'private') {
|
|
@@ -43,15 +54,40 @@ class R2Provider {
|
|
|
43
54
|
'lands in Phase 2b.');
|
|
44
55
|
}
|
|
45
56
|
const body = await toUint8Array(data);
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
57
|
+
const extraHeaders = {
|
|
58
|
+
'content-type': opts?.contentType ?? DEFAULT_CONTENT_TYPE,
|
|
59
|
+
};
|
|
60
|
+
if (opts?.cacheControl) {
|
|
61
|
+
extraHeaders['cache-control'] = opts.cacheControl;
|
|
62
|
+
}
|
|
63
|
+
for (const [name, value] of Object.entries(opts?.metadata ?? {})) {
|
|
64
|
+
extraHeaders[`x-amz-meta-${name.toLowerCase()}`] = value;
|
|
65
|
+
}
|
|
66
|
+
const { url, headers } = signS3Request({
|
|
67
|
+
method: 'PUT',
|
|
68
|
+
accountId: this.accountId,
|
|
69
|
+
bucket: this.bucket,
|
|
70
|
+
key,
|
|
71
|
+
region: REGION,
|
|
72
|
+
accessKeyId: this.accessKeyId,
|
|
73
|
+
secretAccessKey: this.secretAccessKey,
|
|
74
|
+
payloadHash: sha256Hex(body),
|
|
75
|
+
extraHeaders,
|
|
76
|
+
now: new Date(),
|
|
77
|
+
});
|
|
78
|
+
// No manual content-length: it is a forbidden fetch header that undici
|
|
79
|
+
// computes from the body itself, and setting it throws UND_ERR_INVALID_ARG
|
|
80
|
+
// ("invalid content-length header") on the R2 PUT. `headers` already carries
|
|
81
|
+
// the signed set. `as BodyInit` bridges the TS lib's ArrayBufferLike vs
|
|
82
|
+
// ArrayBuffer typed-array variance for fetch bodies (cf. src/api/compression.ts).
|
|
83
|
+
const response = await fetch(url, {
|
|
84
|
+
method: 'PUT',
|
|
85
|
+
headers,
|
|
86
|
+
body: body,
|
|
87
|
+
});
|
|
88
|
+
if (!response.ok) {
|
|
89
|
+
throw await storageError('PUT', key, response);
|
|
90
|
+
}
|
|
55
91
|
return {
|
|
56
92
|
key,
|
|
57
93
|
url: `${this.publicBaseUrl}/${key}`,
|
|
@@ -61,34 +97,56 @@ class R2Provider {
|
|
|
61
97
|
}
|
|
62
98
|
async del(keyOrUrl) {
|
|
63
99
|
const key = this.extractKey(keyOrUrl);
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
100
|
+
const { url, headers } = signS3Request({
|
|
101
|
+
method: 'DELETE',
|
|
102
|
+
accountId: this.accountId,
|
|
103
|
+
bucket: this.bucket,
|
|
104
|
+
key,
|
|
105
|
+
region: REGION,
|
|
106
|
+
accessKeyId: this.accessKeyId,
|
|
107
|
+
secretAccessKey: this.secretAccessKey,
|
|
108
|
+
payloadHash: EMPTY_SHA256,
|
|
109
|
+
now: new Date(),
|
|
110
|
+
});
|
|
111
|
+
// Best-effort: a missing key is not an error. S3/R2 returns 204 regardless;
|
|
112
|
+
// tolerate 404 defensively.
|
|
113
|
+
const response = await fetch(url, { method: 'DELETE', headers });
|
|
114
|
+
if (!response.ok && response.status !== 404) {
|
|
115
|
+
throw await storageError('DELETE', key, response);
|
|
116
|
+
}
|
|
68
117
|
}
|
|
69
118
|
async list(opts) {
|
|
70
|
-
const
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
},
|
|
86
|
-
];
|
|
119
|
+
const { url, headers } = signS3Request({
|
|
120
|
+
method: 'GET',
|
|
121
|
+
accountId: this.accountId,
|
|
122
|
+
bucket: this.bucket,
|
|
123
|
+
region: REGION,
|
|
124
|
+
accessKeyId: this.accessKeyId,
|
|
125
|
+
secretAccessKey: this.secretAccessKey,
|
|
126
|
+
payloadHash: EMPTY_SHA256,
|
|
127
|
+
query: {
|
|
128
|
+
'list-type': '2',
|
|
129
|
+
prefix: opts?.prefix,
|
|
130
|
+
'max-keys': String(opts?.limit ?? DEFAULT_LIST_LIMIT),
|
|
131
|
+
'continuation-token': opts?.cursor,
|
|
132
|
+
},
|
|
133
|
+
now: new Date(),
|
|
87
134
|
});
|
|
135
|
+
const response = await fetch(url, { method: 'GET', headers });
|
|
136
|
+
if (!response.ok) {
|
|
137
|
+
throw await storageError('LIST', this.bucket, response);
|
|
138
|
+
}
|
|
139
|
+
const parsed = parseListObjectsV2(await response.text());
|
|
140
|
+
const items = parsed.objects.map((entry) => ({
|
|
141
|
+
key: entry.key,
|
|
142
|
+
url: `${this.publicBaseUrl}/${entry.key}`,
|
|
143
|
+
size: entry.size,
|
|
144
|
+
uploadedAt: entry.lastModified,
|
|
145
|
+
}));
|
|
88
146
|
return {
|
|
89
147
|
items,
|
|
90
|
-
cursor:
|
|
91
|
-
hasMore:
|
|
148
|
+
cursor: parsed.nextContinuationToken,
|
|
149
|
+
hasMore: parsed.isTruncated,
|
|
92
150
|
};
|
|
93
151
|
}
|
|
94
152
|
extractKey(keyOrUrl) {
|
|
@@ -104,6 +162,11 @@ export function createR2Provider(config) {
|
|
|
104
162
|
return new R2Provider(config);
|
|
105
163
|
}
|
|
106
164
|
// ── helpers ────────────────────────────────────────────────────────────────
|
|
165
|
+
async function storageError(operation, key, response) {
|
|
166
|
+
const body = await response.text().catch(() => '');
|
|
167
|
+
const { code, message } = s3ErrorFields(body);
|
|
168
|
+
return new Error(`R2 ${operation} failed for "${key}": ${code ?? response.status} ${message ?? response.statusText}`);
|
|
169
|
+
}
|
|
107
170
|
function tryParseUrl(value) {
|
|
108
171
|
try {
|
|
109
172
|
return new URL(value);
|
package/package.json
CHANGED
|
@@ -1,45 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@revealui/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "RevealUI's runtime engine — admin UI, REST API, auth, rich text, plugin system, and access control. The heart of the open-source platform.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"@
|
|
8
|
-
"@
|
|
9
|
-
"@lexical/
|
|
10
|
-
"@lexical/
|
|
11
|
-
"@lexical/
|
|
12
|
-
"@lexical/
|
|
13
|
-
"@lexical/
|
|
14
|
-
"@lexical/
|
|
15
|
-
"@lexical/
|
|
16
|
-
"@lexical/
|
|
17
|
-
"@lexical/
|
|
18
|
-
"@lexical/
|
|
19
|
-
"@lexical/yjs": "^0.44.0",
|
|
7
|
+
"@electric-sql/pglite": "^0.5.1",
|
|
8
|
+
"@lexical/clipboard": "^0.45.0",
|
|
9
|
+
"@lexical/code": "^0.45.0",
|
|
10
|
+
"@lexical/html": "^0.45.0",
|
|
11
|
+
"@lexical/link": "^0.45.0",
|
|
12
|
+
"@lexical/list": "^0.45.0",
|
|
13
|
+
"@lexical/react": "^0.45.0",
|
|
14
|
+
"@lexical/rich-text": "^0.45.0",
|
|
15
|
+
"@lexical/selection": "^0.45.0",
|
|
16
|
+
"@lexical/table": "^0.45.0",
|
|
17
|
+
"@lexical/utils": "^0.45.0",
|
|
18
|
+
"@lexical/yjs": "^0.45.0",
|
|
20
19
|
"@vercel/blob": "^2.3.3",
|
|
21
20
|
"bcryptjs": "^3.0.3",
|
|
22
21
|
"dataloader": "^2.2.3",
|
|
23
|
-
"jose": "^
|
|
24
|
-
"lexical": "^0.
|
|
22
|
+
"jose": "^5.10.0",
|
|
23
|
+
"lexical": "^0.45.0",
|
|
25
24
|
"pg": "^8.21.0",
|
|
26
|
-
"yjs": "^13.6.
|
|
25
|
+
"yjs": "^13.6.31",
|
|
27
26
|
"zod": "^4.4.3",
|
|
28
|
-
"@revealui/cache": "0.2.
|
|
29
|
-
"@revealui/contracts": "0.6.
|
|
27
|
+
"@revealui/cache": "0.2.2",
|
|
28
|
+
"@revealui/contracts": "0.6.1",
|
|
30
29
|
"@revealui/resilience": "0.2.4",
|
|
31
|
-
"@revealui/security": "0.4.
|
|
30
|
+
"@revealui/security": "0.4.1",
|
|
32
31
|
"@revealui/utils": "0.3.5"
|
|
33
32
|
},
|
|
34
33
|
"devDependencies": {
|
|
35
34
|
"@types/json-schema": "^7.0.15",
|
|
36
35
|
"@types/pg": "^8.20.0",
|
|
37
|
-
"@types/react": "^19.2.
|
|
36
|
+
"@types/react": "^19.2.17",
|
|
38
37
|
"@types/react-dom": "^19.2.3",
|
|
39
|
-
"@vitest/coverage-v8": "^4.1.
|
|
38
|
+
"@vitest/coverage-v8": "^4.1.8",
|
|
40
39
|
"expect-type": "^1.3.0",
|
|
41
40
|
"tsup": "^8.5.1",
|
|
42
|
-
"vitest": "^4.1.
|
|
41
|
+
"vitest": "^4.1.8",
|
|
43
42
|
"@revealui/dev": "0.1.0"
|
|
44
43
|
},
|
|
45
44
|
"engines": {
|