@cedar-policy/cedar-wasm 3.2.0 → 3.2.2
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 +18 -2
- package/esm/README.md +151 -0
- package/{cedar_wasm.d.ts → esm/cedar_wasm.d.ts} +52 -52
- package/esm/cedar_wasm_bg.wasm +0 -0
- package/esm/cedar_wasm_bg.wasm.d.ts +19 -0
- package/esm/package.json +20 -0
- package/nodejs/README.md +151 -0
- package/nodejs/cedar_wasm.d.ts +270 -0
- package/nodejs/cedar_wasm.js +310 -0
- package/nodejs/cedar_wasm_bg.wasm +0 -0
- package/nodejs/cedar_wasm_bg.wasm.d.ts +19 -0
- package/nodejs/package.json +15 -0
- package/package.json +39 -11
- package/web/README.md +151 -0
- package/web/cedar_wasm.d.ts +313 -0
- package/web/cedar_wasm.js +381 -0
- package/web/cedar_wasm_bg.wasm +0 -0
- package/web/cedar_wasm_bg.wasm.d.ts +19 -0
- package/web/package.json +18 -0
- package/cedar_wasm_bg.wasm +0 -0
- /package/{cedar_wasm.js → esm/cedar_wasm.js} +0 -0
- /package/{cedar_wasm_bg.js → esm/cedar_wasm_bg.js} +0 -0
|
@@ -0,0 +1,381 @@
|
|
|
1
|
+
let wasm;
|
|
2
|
+
|
|
3
|
+
const heap = new Array(128).fill(undefined);
|
|
4
|
+
|
|
5
|
+
heap.push(undefined, null, true, false);
|
|
6
|
+
|
|
7
|
+
function getObject(idx) { return heap[idx]; }
|
|
8
|
+
|
|
9
|
+
let heap_next = heap.length;
|
|
10
|
+
|
|
11
|
+
function addHeapObject(obj) {
|
|
12
|
+
if (heap_next === heap.length) heap.push(heap.length + 1);
|
|
13
|
+
const idx = heap_next;
|
|
14
|
+
heap_next = heap[idx];
|
|
15
|
+
|
|
16
|
+
heap[idx] = obj;
|
|
17
|
+
return idx;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function dropObject(idx) {
|
|
21
|
+
if (idx < 132) return;
|
|
22
|
+
heap[idx] = heap_next;
|
|
23
|
+
heap_next = idx;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
function takeObject(idx) {
|
|
27
|
+
const ret = getObject(idx);
|
|
28
|
+
dropObject(idx);
|
|
29
|
+
return ret;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
let WASM_VECTOR_LEN = 0;
|
|
33
|
+
|
|
34
|
+
let cachedUint8Memory0 = null;
|
|
35
|
+
|
|
36
|
+
function getUint8Memory0() {
|
|
37
|
+
if (cachedUint8Memory0 === null || cachedUint8Memory0.byteLength === 0) {
|
|
38
|
+
cachedUint8Memory0 = new Uint8Array(wasm.memory.buffer);
|
|
39
|
+
}
|
|
40
|
+
return cachedUint8Memory0;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
const cachedTextEncoder = (typeof TextEncoder !== 'undefined' ? new TextEncoder('utf-8') : { encode: () => { throw Error('TextEncoder not available') } } );
|
|
44
|
+
|
|
45
|
+
const encodeString = (typeof cachedTextEncoder.encodeInto === 'function'
|
|
46
|
+
? function (arg, view) {
|
|
47
|
+
return cachedTextEncoder.encodeInto(arg, view);
|
|
48
|
+
}
|
|
49
|
+
: function (arg, view) {
|
|
50
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
51
|
+
view.set(buf);
|
|
52
|
+
return {
|
|
53
|
+
read: arg.length,
|
|
54
|
+
written: buf.length
|
|
55
|
+
};
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
function passStringToWasm0(arg, malloc, realloc) {
|
|
59
|
+
|
|
60
|
+
if (realloc === undefined) {
|
|
61
|
+
const buf = cachedTextEncoder.encode(arg);
|
|
62
|
+
const ptr = malloc(buf.length, 1) >>> 0;
|
|
63
|
+
getUint8Memory0().subarray(ptr, ptr + buf.length).set(buf);
|
|
64
|
+
WASM_VECTOR_LEN = buf.length;
|
|
65
|
+
return ptr;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
let len = arg.length;
|
|
69
|
+
let ptr = malloc(len, 1) >>> 0;
|
|
70
|
+
|
|
71
|
+
const mem = getUint8Memory0();
|
|
72
|
+
|
|
73
|
+
let offset = 0;
|
|
74
|
+
|
|
75
|
+
for (; offset < len; offset++) {
|
|
76
|
+
const code = arg.charCodeAt(offset);
|
|
77
|
+
if (code > 0x7F) break;
|
|
78
|
+
mem[ptr + offset] = code;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
if (offset !== len) {
|
|
82
|
+
if (offset !== 0) {
|
|
83
|
+
arg = arg.slice(offset);
|
|
84
|
+
}
|
|
85
|
+
ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
|
|
86
|
+
const view = getUint8Memory0().subarray(ptr + offset, ptr + len);
|
|
87
|
+
const ret = encodeString(arg, view);
|
|
88
|
+
|
|
89
|
+
offset += ret.written;
|
|
90
|
+
ptr = realloc(ptr, len, offset, 1) >>> 0;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
WASM_VECTOR_LEN = offset;
|
|
94
|
+
return ptr;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
function isLikeNone(x) {
|
|
98
|
+
return x === undefined || x === null;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
let cachedInt32Memory0 = null;
|
|
102
|
+
|
|
103
|
+
function getInt32Memory0() {
|
|
104
|
+
if (cachedInt32Memory0 === null || cachedInt32Memory0.byteLength === 0) {
|
|
105
|
+
cachedInt32Memory0 = new Int32Array(wasm.memory.buffer);
|
|
106
|
+
}
|
|
107
|
+
return cachedInt32Memory0;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
const cachedTextDecoder = (typeof TextDecoder !== 'undefined' ? new TextDecoder('utf-8', { ignoreBOM: true, fatal: true }) : { decode: () => { throw Error('TextDecoder not available') } } );
|
|
111
|
+
|
|
112
|
+
if (typeof TextDecoder !== 'undefined') { cachedTextDecoder.decode(); };
|
|
113
|
+
|
|
114
|
+
function getStringFromWasm0(ptr, len) {
|
|
115
|
+
ptr = ptr >>> 0;
|
|
116
|
+
return cachedTextDecoder.decode(getUint8Memory0().subarray(ptr, ptr + len));
|
|
117
|
+
}
|
|
118
|
+
/**
|
|
119
|
+
* @param {string} json_str
|
|
120
|
+
* @returns {JsonToPolicyResult}
|
|
121
|
+
*/
|
|
122
|
+
export function policyTextFromJson(json_str) {
|
|
123
|
+
const ptr0 = passStringToWasm0(json_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
124
|
+
const len0 = WASM_VECTOR_LEN;
|
|
125
|
+
const ret = wasm.policyTextFromJson(ptr0, len0);
|
|
126
|
+
return takeObject(ret);
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @param {string} cedar_str
|
|
131
|
+
* @returns {PolicyToJsonResult}
|
|
132
|
+
*/
|
|
133
|
+
export function policyTextToJson(cedar_str) {
|
|
134
|
+
const ptr0 = passStringToWasm0(cedar_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
135
|
+
const len0 = WASM_VECTOR_LEN;
|
|
136
|
+
const ret = wasm.policyTextToJson(ptr0, len0);
|
|
137
|
+
return takeObject(ret);
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* @param {string} input_policies_str
|
|
142
|
+
* @returns {CheckParsePolicySetResult}
|
|
143
|
+
*/
|
|
144
|
+
export function checkParsePolicySet(input_policies_str) {
|
|
145
|
+
const ptr0 = passStringToWasm0(input_policies_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
146
|
+
const len0 = WASM_VECTOR_LEN;
|
|
147
|
+
const ret = wasm.checkParsePolicySet(ptr0, len0);
|
|
148
|
+
return takeObject(ret);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @param {string} template_str
|
|
153
|
+
* @returns {CheckParseTemplateResult}
|
|
154
|
+
*/
|
|
155
|
+
export function checkParseTemplate(template_str) {
|
|
156
|
+
const ptr0 = passStringToWasm0(template_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
157
|
+
const len0 = WASM_VECTOR_LEN;
|
|
158
|
+
const ret = wasm.checkParseTemplate(ptr0, len0);
|
|
159
|
+
return takeObject(ret);
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* @param {string} input_schema
|
|
164
|
+
* @returns {CheckParseResult}
|
|
165
|
+
*/
|
|
166
|
+
export function checkParseSchema(input_schema) {
|
|
167
|
+
const ptr0 = passStringToWasm0(input_schema, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
168
|
+
const len0 = WASM_VECTOR_LEN;
|
|
169
|
+
const ret = wasm.checkParseSchema(ptr0, len0);
|
|
170
|
+
return takeObject(ret);
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* @param {string} entities_str
|
|
175
|
+
* @param {string} schema_str
|
|
176
|
+
* @returns {CheckParseResult}
|
|
177
|
+
*/
|
|
178
|
+
export function checkParseEntities(entities_str, schema_str) {
|
|
179
|
+
const ptr0 = passStringToWasm0(entities_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
180
|
+
const len0 = WASM_VECTOR_LEN;
|
|
181
|
+
const ptr1 = passStringToWasm0(schema_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
182
|
+
const len1 = WASM_VECTOR_LEN;
|
|
183
|
+
const ret = wasm.checkParseEntities(ptr0, len0, ptr1, len1);
|
|
184
|
+
return takeObject(ret);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* @param {string} context_str
|
|
189
|
+
* @param {string} action_str
|
|
190
|
+
* @param {string} schema_str
|
|
191
|
+
* @returns {CheckParseResult}
|
|
192
|
+
*/
|
|
193
|
+
export function checkParseContext(context_str, action_str, schema_str) {
|
|
194
|
+
const ptr0 = passStringToWasm0(context_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
195
|
+
const len0 = WASM_VECTOR_LEN;
|
|
196
|
+
const ptr1 = passStringToWasm0(action_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
197
|
+
const len1 = WASM_VECTOR_LEN;
|
|
198
|
+
const ptr2 = passStringToWasm0(schema_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
199
|
+
const len2 = WASM_VECTOR_LEN;
|
|
200
|
+
const ret = wasm.checkParseContext(ptr0, len0, ptr1, len1, ptr2, len2);
|
|
201
|
+
return takeObject(ret);
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
/**
|
|
205
|
+
* @param {string} policies_str
|
|
206
|
+
* @param {number} line_width
|
|
207
|
+
* @param {number} indent_width
|
|
208
|
+
* @returns {FormattingResult}
|
|
209
|
+
*/
|
|
210
|
+
export function formatPolicies(policies_str, line_width, indent_width) {
|
|
211
|
+
const ptr0 = passStringToWasm0(policies_str, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
212
|
+
const len0 = WASM_VECTOR_LEN;
|
|
213
|
+
const ret = wasm.formatPolicies(ptr0, len0, line_width, indent_width);
|
|
214
|
+
return takeObject(ret);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
/**
|
|
218
|
+
* @returns {string}
|
|
219
|
+
*/
|
|
220
|
+
export function getCedarVersion() {
|
|
221
|
+
let deferred1_0;
|
|
222
|
+
let deferred1_1;
|
|
223
|
+
try {
|
|
224
|
+
const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
|
|
225
|
+
wasm.getCedarVersion(retptr);
|
|
226
|
+
var r0 = getInt32Memory0()[retptr / 4 + 0];
|
|
227
|
+
var r1 = getInt32Memory0()[retptr / 4 + 1];
|
|
228
|
+
deferred1_0 = r0;
|
|
229
|
+
deferred1_1 = r1;
|
|
230
|
+
return getStringFromWasm0(r0, r1);
|
|
231
|
+
} finally {
|
|
232
|
+
wasm.__wbindgen_add_to_stack_pointer(16);
|
|
233
|
+
wasm.__wbindgen_free(deferred1_0, deferred1_1, 1);
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* @param {AuthorizationCall} call
|
|
239
|
+
* @returns {AuthorizationAnswer}
|
|
240
|
+
*/
|
|
241
|
+
export function isAuthorized(call) {
|
|
242
|
+
const ret = wasm.isAuthorized(addHeapObject(call));
|
|
243
|
+
return takeObject(ret);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* @param {ValidationCall} call
|
|
248
|
+
* @returns {ValidationAnswer}
|
|
249
|
+
*/
|
|
250
|
+
export function validate(call) {
|
|
251
|
+
const ret = wasm.validate(addHeapObject(call));
|
|
252
|
+
return takeObject(ret);
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
function handleError(f, args) {
|
|
256
|
+
try {
|
|
257
|
+
return f.apply(this, args);
|
|
258
|
+
} catch (e) {
|
|
259
|
+
wasm.__wbindgen_exn_store(addHeapObject(e));
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
async function __wbg_load(module, imports) {
|
|
264
|
+
if (typeof Response === 'function' && module instanceof Response) {
|
|
265
|
+
if (typeof WebAssembly.instantiateStreaming === 'function') {
|
|
266
|
+
try {
|
|
267
|
+
return await WebAssembly.instantiateStreaming(module, imports);
|
|
268
|
+
|
|
269
|
+
} catch (e) {
|
|
270
|
+
if (module.headers.get('Content-Type') != 'application/wasm') {
|
|
271
|
+
console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", e);
|
|
272
|
+
|
|
273
|
+
} else {
|
|
274
|
+
throw e;
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
const bytes = await module.arrayBuffer();
|
|
280
|
+
return await WebAssembly.instantiate(bytes, imports);
|
|
281
|
+
|
|
282
|
+
} else {
|
|
283
|
+
const instance = await WebAssembly.instantiate(module, imports);
|
|
284
|
+
|
|
285
|
+
if (instance instanceof WebAssembly.Instance) {
|
|
286
|
+
return { instance, module };
|
|
287
|
+
|
|
288
|
+
} else {
|
|
289
|
+
return instance;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
function __wbg_get_imports() {
|
|
295
|
+
const imports = {};
|
|
296
|
+
imports.wbg = {};
|
|
297
|
+
imports.wbg.__wbindgen_is_undefined = function(arg0) {
|
|
298
|
+
const ret = getObject(arg0) === undefined;
|
|
299
|
+
return ret;
|
|
300
|
+
};
|
|
301
|
+
imports.wbg.__wbindgen_object_clone_ref = function(arg0) {
|
|
302
|
+
const ret = getObject(arg0);
|
|
303
|
+
return addHeapObject(ret);
|
|
304
|
+
};
|
|
305
|
+
imports.wbg.__wbindgen_object_drop_ref = function(arg0) {
|
|
306
|
+
takeObject(arg0);
|
|
307
|
+
};
|
|
308
|
+
imports.wbg.__wbindgen_string_get = function(arg0, arg1) {
|
|
309
|
+
const obj = getObject(arg1);
|
|
310
|
+
const ret = typeof(obj) === 'string' ? obj : undefined;
|
|
311
|
+
var ptr1 = isLikeNone(ret) ? 0 : passStringToWasm0(ret, wasm.__wbindgen_malloc, wasm.__wbindgen_realloc);
|
|
312
|
+
var len1 = WASM_VECTOR_LEN;
|
|
313
|
+
getInt32Memory0()[arg0 / 4 + 1] = len1;
|
|
314
|
+
getInt32Memory0()[arg0 / 4 + 0] = ptr1;
|
|
315
|
+
};
|
|
316
|
+
imports.wbg.__wbg_parse_66d1801634e099ac = function() { return handleError(function (arg0, arg1) {
|
|
317
|
+
const ret = JSON.parse(getStringFromWasm0(arg0, arg1));
|
|
318
|
+
return addHeapObject(ret);
|
|
319
|
+
}, arguments) };
|
|
320
|
+
imports.wbg.__wbg_stringify_8887fe74e1c50d81 = function() { return handleError(function (arg0) {
|
|
321
|
+
const ret = JSON.stringify(getObject(arg0));
|
|
322
|
+
return addHeapObject(ret);
|
|
323
|
+
}, arguments) };
|
|
324
|
+
imports.wbg.__wbindgen_throw = function(arg0, arg1) {
|
|
325
|
+
throw new Error(getStringFromWasm0(arg0, arg1));
|
|
326
|
+
};
|
|
327
|
+
|
|
328
|
+
return imports;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
function __wbg_init_memory(imports, maybe_memory) {
|
|
332
|
+
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
function __wbg_finalize_init(instance, module) {
|
|
336
|
+
wasm = instance.exports;
|
|
337
|
+
__wbg_init.__wbindgen_wasm_module = module;
|
|
338
|
+
cachedInt32Memory0 = null;
|
|
339
|
+
cachedUint8Memory0 = null;
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
return wasm;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
function initSync(module) {
|
|
346
|
+
if (wasm !== undefined) return wasm;
|
|
347
|
+
|
|
348
|
+
const imports = __wbg_get_imports();
|
|
349
|
+
|
|
350
|
+
__wbg_init_memory(imports);
|
|
351
|
+
|
|
352
|
+
if (!(module instanceof WebAssembly.Module)) {
|
|
353
|
+
module = new WebAssembly.Module(module);
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
const instance = new WebAssembly.Instance(module, imports);
|
|
357
|
+
|
|
358
|
+
return __wbg_finalize_init(instance, module);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
async function __wbg_init(input) {
|
|
362
|
+
if (wasm !== undefined) return wasm;
|
|
363
|
+
|
|
364
|
+
if (typeof input === 'undefined') {
|
|
365
|
+
input = new URL('cedar_wasm_bg.wasm', import.meta.url);
|
|
366
|
+
}
|
|
367
|
+
const imports = __wbg_get_imports();
|
|
368
|
+
|
|
369
|
+
if (typeof input === 'string' || (typeof Request === 'function' && input instanceof Request) || (typeof URL === 'function' && input instanceof URL)) {
|
|
370
|
+
input = fetch(input);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
__wbg_init_memory(imports);
|
|
374
|
+
|
|
375
|
+
const { instance, module } = await __wbg_load(await input, imports);
|
|
376
|
+
|
|
377
|
+
return __wbg_finalize_init(instance, module);
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
export { initSync }
|
|
381
|
+
export default __wbg_init;
|
|
Binary file
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export const memory: WebAssembly.Memory;
|
|
4
|
+
export function policyTextFromJson(a: number, b: number): number;
|
|
5
|
+
export function policyTextToJson(a: number, b: number): number;
|
|
6
|
+
export function checkParsePolicySet(a: number, b: number): number;
|
|
7
|
+
export function checkParseTemplate(a: number, b: number): number;
|
|
8
|
+
export function checkParseSchema(a: number, b: number): number;
|
|
9
|
+
export function checkParseEntities(a: number, b: number, c: number, d: number): number;
|
|
10
|
+
export function checkParseContext(a: number, b: number, c: number, d: number, e: number, f: number): number;
|
|
11
|
+
export function formatPolicies(a: number, b: number, c: number, d: number): number;
|
|
12
|
+
export function getCedarVersion(a: number): void;
|
|
13
|
+
export function isAuthorized(a: number): number;
|
|
14
|
+
export function validate(a: number): number;
|
|
15
|
+
export function __wbindgen_malloc(a: number, b: number): number;
|
|
16
|
+
export function __wbindgen_realloc(a: number, b: number, c: number, d: number): number;
|
|
17
|
+
export function __wbindgen_add_to_stack_pointer(a: number): number;
|
|
18
|
+
export function __wbindgen_free(a: number, b: number, c: number): void;
|
|
19
|
+
export function __wbindgen_exn_store(a: number): void;
|
package/web/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cedar-policy/cedar-wasm",
|
|
3
|
+
"description": "Wasm bindings and typescript types for Cedar lib",
|
|
4
|
+
"version": "3.2.2",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"files": [
|
|
7
|
+
"cedar_wasm_bg.wasm",
|
|
8
|
+
"cedar_wasm_bg.wasm.d.ts",
|
|
9
|
+
"cedar_wasm.js",
|
|
10
|
+
"cedar_wasm.d.ts"
|
|
11
|
+
],
|
|
12
|
+
"module": "cedar_wasm.js",
|
|
13
|
+
"types": "cedar_wasm.d.ts",
|
|
14
|
+
"sideEffects": [
|
|
15
|
+
"./snippets/*"
|
|
16
|
+
],
|
|
17
|
+
"type": "module"
|
|
18
|
+
}
|
package/cedar_wasm_bg.wasm
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|