@hyperdag/proof-verifier 0.1.0 → 0.2.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.
@@ -1,269 +1,269 @@
1
- /* @ts-self-types="./hyperdag_proof_verifier.d.ts" */
2
-
3
- export function init_panic_hook() {
4
- wasm.init_panic_hook();
5
- }
6
-
7
- /**
8
- * @param {string} input_json
9
- * @returns {string}
10
- */
11
- export function verify_proof(input_json) {
12
- let deferred2_0;
13
- let deferred2_1;
14
- try {
15
- const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
16
- const ptr0 = passStringToWasm0(input_json, wasm.__wbindgen_export2, wasm.__wbindgen_export3);
17
- const len0 = WASM_VECTOR_LEN;
18
- wasm.verify_proof(retptr, ptr0, len0);
19
- var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
20
- var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
21
- deferred2_0 = r0;
22
- deferred2_1 = r1;
23
- return getStringFromWasm0(r0, r1);
24
- } finally {
25
- wasm.__wbindgen_add_to_stack_pointer(16);
26
- wasm.__wbindgen_export(deferred2_0, deferred2_1, 1);
27
- }
28
- }
29
- function __wbg_get_imports() {
30
- const import0 = {
31
- __proto__: null,
32
- __wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
33
- let deferred0_0;
34
- let deferred0_1;
35
- try {
36
- deferred0_0 = arg0;
37
- deferred0_1 = arg1;
38
- console.error(getStringFromWasm0(arg0, arg1));
39
- } finally {
40
- wasm.__wbindgen_export(deferred0_0, deferred0_1, 1);
41
- }
42
- },
43
- __wbg_new_227d7c05414eb861: function() {
44
- const ret = new Error();
45
- return addHeapObject(ret);
46
- },
47
- __wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
48
- const ret = getObject(arg1).stack;
49
- const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export2, wasm.__wbindgen_export3);
50
- const len1 = WASM_VECTOR_LEN;
51
- getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
52
- getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
53
- },
54
- __wbindgen_object_drop_ref: function(arg0) {
55
- takeObject(arg0);
56
- },
57
- };
58
- return {
59
- __proto__: null,
60
- "./hyperdag_proof_verifier_bg.js": import0,
61
- };
62
- }
63
-
64
- function addHeapObject(obj) {
65
- if (heap_next === heap.length) heap.push(heap.length + 1);
66
- const idx = heap_next;
67
- heap_next = heap[idx];
68
-
69
- heap[idx] = obj;
70
- return idx;
71
- }
72
-
73
- function dropObject(idx) {
74
- if (idx < 1028) return;
75
- heap[idx] = heap_next;
76
- heap_next = idx;
77
- }
78
-
79
- let cachedDataViewMemory0 = null;
80
- function getDataViewMemory0() {
81
- if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
82
- cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
83
- }
84
- return cachedDataViewMemory0;
85
- }
86
-
87
- function getStringFromWasm0(ptr, len) {
88
- return decodeText(ptr >>> 0, len);
89
- }
90
-
91
- let cachedUint8ArrayMemory0 = null;
92
- function getUint8ArrayMemory0() {
93
- if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
94
- cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
95
- }
96
- return cachedUint8ArrayMemory0;
97
- }
98
-
99
- function getObject(idx) { return heap[idx]; }
100
-
101
- let heap = new Array(1024).fill(undefined);
102
- heap.push(undefined, null, true, false);
103
-
104
- let heap_next = heap.length;
105
-
106
- function passStringToWasm0(arg, malloc, realloc) {
107
- if (realloc === undefined) {
108
- const buf = cachedTextEncoder.encode(arg);
109
- const ptr = malloc(buf.length, 1) >>> 0;
110
- getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
111
- WASM_VECTOR_LEN = buf.length;
112
- return ptr;
113
- }
114
-
115
- let len = arg.length;
116
- let ptr = malloc(len, 1) >>> 0;
117
-
118
- const mem = getUint8ArrayMemory0();
119
-
120
- let offset = 0;
121
-
122
- for (; offset < len; offset++) {
123
- const code = arg.charCodeAt(offset);
124
- if (code > 0x7F) break;
125
- mem[ptr + offset] = code;
126
- }
127
- if (offset !== len) {
128
- if (offset !== 0) {
129
- arg = arg.slice(offset);
130
- }
131
- ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
132
- const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
133
- const ret = cachedTextEncoder.encodeInto(arg, view);
134
-
135
- offset += ret.written;
136
- ptr = realloc(ptr, len, offset, 1) >>> 0;
137
- }
138
-
139
- WASM_VECTOR_LEN = offset;
140
- return ptr;
141
- }
142
-
143
- function takeObject(idx) {
144
- const ret = getObject(idx);
145
- dropObject(idx);
146
- return ret;
147
- }
148
-
149
- let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
150
- cachedTextDecoder.decode();
151
- const MAX_SAFARI_DECODE_BYTES = 2146435072;
152
- let numBytesDecoded = 0;
153
- function decodeText(ptr, len) {
154
- numBytesDecoded += len;
155
- if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
156
- cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
157
- cachedTextDecoder.decode();
158
- numBytesDecoded = len;
159
- }
160
- return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
161
- }
162
-
163
- const cachedTextEncoder = new TextEncoder();
164
-
165
- if (!('encodeInto' in cachedTextEncoder)) {
166
- cachedTextEncoder.encodeInto = function (arg, view) {
167
- const buf = cachedTextEncoder.encode(arg);
168
- view.set(buf);
169
- return {
170
- read: arg.length,
171
- written: buf.length
172
- };
173
- };
174
- }
175
-
176
- let WASM_VECTOR_LEN = 0;
177
-
178
- let wasmModule, wasmInstance, wasm;
179
- function __wbg_finalize_init(instance, module) {
180
- wasmInstance = instance;
181
- wasm = instance.exports;
182
- wasmModule = module;
183
- cachedDataViewMemory0 = null;
184
- cachedUint8ArrayMemory0 = null;
185
- return wasm;
186
- }
187
-
188
- async function __wbg_load(module, imports) {
189
- if (typeof Response === 'function' && module instanceof Response) {
190
- if (typeof WebAssembly.instantiateStreaming === 'function') {
191
- try {
192
- return await WebAssembly.instantiateStreaming(module, imports);
193
- } catch (e) {
194
- const validResponse = module.ok && expectedResponseType(module.type);
195
-
196
- if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
197
- 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);
198
-
199
- } else { throw e; }
200
- }
201
- }
202
-
203
- const bytes = await module.arrayBuffer();
204
- return await WebAssembly.instantiate(bytes, imports);
205
- } else {
206
- const instance = await WebAssembly.instantiate(module, imports);
207
-
208
- if (instance instanceof WebAssembly.Instance) {
209
- return { instance, module };
210
- } else {
211
- return instance;
212
- }
213
- }
214
-
215
- function expectedResponseType(type) {
216
- switch (type) {
217
- case 'basic': case 'cors': case 'default': return true;
218
- }
219
- return false;
220
- }
221
- }
222
-
223
- function initSync(module) {
224
- if (wasm !== undefined) return wasm;
225
-
226
-
227
- if (module !== undefined) {
228
- if (Object.getPrototypeOf(module) === Object.prototype) {
229
- ({module} = module)
230
- } else {
231
- console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
232
- }
233
- }
234
-
235
- const imports = __wbg_get_imports();
236
- if (!(module instanceof WebAssembly.Module)) {
237
- module = new WebAssembly.Module(module);
238
- }
239
- const instance = new WebAssembly.Instance(module, imports);
240
- return __wbg_finalize_init(instance, module);
241
- }
242
-
243
- async function __wbg_init(module_or_path) {
244
- if (wasm !== undefined) return wasm;
245
-
246
-
247
- if (module_or_path !== undefined) {
248
- if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
249
- ({module_or_path} = module_or_path)
250
- } else {
251
- console.warn('using deprecated parameters for the initialization function; pass a single object instead')
252
- }
253
- }
254
-
255
- if (module_or_path === undefined) {
256
- module_or_path = new URL('hyperdag_proof_verifier_bg.wasm', import.meta.url);
257
- }
258
- const imports = __wbg_get_imports();
259
-
260
- if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
261
- module_or_path = fetch(module_or_path);
262
- }
263
-
264
- const { instance, module } = await __wbg_load(await module_or_path, imports);
265
-
266
- return __wbg_finalize_init(instance, module);
267
- }
268
-
269
- export { initSync, __wbg_init as default };
1
+ /* @ts-self-types="./hyperdag_proof_verifier.d.ts" */
2
+
3
+ export function init_panic_hook() {
4
+ wasm.init_panic_hook();
5
+ }
6
+
7
+ /**
8
+ * @param {string} input_json
9
+ * @returns {string}
10
+ */
11
+ export function verify_proof(input_json) {
12
+ let deferred2_0;
13
+ let deferred2_1;
14
+ try {
15
+ const retptr = wasm.__wbindgen_add_to_stack_pointer(-16);
16
+ const ptr0 = passStringToWasm0(input_json, wasm.__wbindgen_export2, wasm.__wbindgen_export3);
17
+ const len0 = WASM_VECTOR_LEN;
18
+ wasm.verify_proof(retptr, ptr0, len0);
19
+ var r0 = getDataViewMemory0().getInt32(retptr + 4 * 0, true);
20
+ var r1 = getDataViewMemory0().getInt32(retptr + 4 * 1, true);
21
+ deferred2_0 = r0;
22
+ deferred2_1 = r1;
23
+ return getStringFromWasm0(r0, r1);
24
+ } finally {
25
+ wasm.__wbindgen_add_to_stack_pointer(16);
26
+ wasm.__wbindgen_export(deferred2_0, deferred2_1, 1);
27
+ }
28
+ }
29
+ function __wbg_get_imports() {
30
+ const import0 = {
31
+ __proto__: null,
32
+ __wbg_error_a6fa202b58aa1cd3: function(arg0, arg1) {
33
+ let deferred0_0;
34
+ let deferred0_1;
35
+ try {
36
+ deferred0_0 = arg0;
37
+ deferred0_1 = arg1;
38
+ console.error(getStringFromWasm0(arg0, arg1));
39
+ } finally {
40
+ wasm.__wbindgen_export(deferred0_0, deferred0_1, 1);
41
+ }
42
+ },
43
+ __wbg_new_227d7c05414eb861: function() {
44
+ const ret = new Error();
45
+ return addHeapObject(ret);
46
+ },
47
+ __wbg_stack_3b0d974bbf31e44f: function(arg0, arg1) {
48
+ const ret = getObject(arg1).stack;
49
+ const ptr1 = passStringToWasm0(ret, wasm.__wbindgen_export2, wasm.__wbindgen_export3);
50
+ const len1 = WASM_VECTOR_LEN;
51
+ getDataViewMemory0().setInt32(arg0 + 4 * 1, len1, true);
52
+ getDataViewMemory0().setInt32(arg0 + 4 * 0, ptr1, true);
53
+ },
54
+ __wbindgen_object_drop_ref: function(arg0) {
55
+ takeObject(arg0);
56
+ },
57
+ };
58
+ return {
59
+ __proto__: null,
60
+ "./hyperdag_proof_verifier_bg.js": import0,
61
+ };
62
+ }
63
+
64
+ function addHeapObject(obj) {
65
+ if (heap_next === heap.length) heap.push(heap.length + 1);
66
+ const idx = heap_next;
67
+ heap_next = heap[idx];
68
+
69
+ heap[idx] = obj;
70
+ return idx;
71
+ }
72
+
73
+ function dropObject(idx) {
74
+ if (idx < 1028) return;
75
+ heap[idx] = heap_next;
76
+ heap_next = idx;
77
+ }
78
+
79
+ let cachedDataViewMemory0 = null;
80
+ function getDataViewMemory0() {
81
+ if (cachedDataViewMemory0 === null || cachedDataViewMemory0.buffer.detached === true || (cachedDataViewMemory0.buffer.detached === undefined && cachedDataViewMemory0.buffer !== wasm.memory.buffer)) {
82
+ cachedDataViewMemory0 = new DataView(wasm.memory.buffer);
83
+ }
84
+ return cachedDataViewMemory0;
85
+ }
86
+
87
+ function getStringFromWasm0(ptr, len) {
88
+ return decodeText(ptr >>> 0, len);
89
+ }
90
+
91
+ let cachedUint8ArrayMemory0 = null;
92
+ function getUint8ArrayMemory0() {
93
+ if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) {
94
+ cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer);
95
+ }
96
+ return cachedUint8ArrayMemory0;
97
+ }
98
+
99
+ function getObject(idx) { return heap[idx]; }
100
+
101
+ let heap = new Array(1024).fill(undefined);
102
+ heap.push(undefined, null, true, false);
103
+
104
+ let heap_next = heap.length;
105
+
106
+ function passStringToWasm0(arg, malloc, realloc) {
107
+ if (realloc === undefined) {
108
+ const buf = cachedTextEncoder.encode(arg);
109
+ const ptr = malloc(buf.length, 1) >>> 0;
110
+ getUint8ArrayMemory0().subarray(ptr, ptr + buf.length).set(buf);
111
+ WASM_VECTOR_LEN = buf.length;
112
+ return ptr;
113
+ }
114
+
115
+ let len = arg.length;
116
+ let ptr = malloc(len, 1) >>> 0;
117
+
118
+ const mem = getUint8ArrayMemory0();
119
+
120
+ let offset = 0;
121
+
122
+ for (; offset < len; offset++) {
123
+ const code = arg.charCodeAt(offset);
124
+ if (code > 0x7F) break;
125
+ mem[ptr + offset] = code;
126
+ }
127
+ if (offset !== len) {
128
+ if (offset !== 0) {
129
+ arg = arg.slice(offset);
130
+ }
131
+ ptr = realloc(ptr, len, len = offset + arg.length * 3, 1) >>> 0;
132
+ const view = getUint8ArrayMemory0().subarray(ptr + offset, ptr + len);
133
+ const ret = cachedTextEncoder.encodeInto(arg, view);
134
+
135
+ offset += ret.written;
136
+ ptr = realloc(ptr, len, offset, 1) >>> 0;
137
+ }
138
+
139
+ WASM_VECTOR_LEN = offset;
140
+ return ptr;
141
+ }
142
+
143
+ function takeObject(idx) {
144
+ const ret = getObject(idx);
145
+ dropObject(idx);
146
+ return ret;
147
+ }
148
+
149
+ let cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
150
+ cachedTextDecoder.decode();
151
+ const MAX_SAFARI_DECODE_BYTES = 2146435072;
152
+ let numBytesDecoded = 0;
153
+ function decodeText(ptr, len) {
154
+ numBytesDecoded += len;
155
+ if (numBytesDecoded >= MAX_SAFARI_DECODE_BYTES) {
156
+ cachedTextDecoder = new TextDecoder('utf-8', { ignoreBOM: true, fatal: true });
157
+ cachedTextDecoder.decode();
158
+ numBytesDecoded = len;
159
+ }
160
+ return cachedTextDecoder.decode(getUint8ArrayMemory0().subarray(ptr, ptr + len));
161
+ }
162
+
163
+ const cachedTextEncoder = new TextEncoder();
164
+
165
+ if (!('encodeInto' in cachedTextEncoder)) {
166
+ cachedTextEncoder.encodeInto = function (arg, view) {
167
+ const buf = cachedTextEncoder.encode(arg);
168
+ view.set(buf);
169
+ return {
170
+ read: arg.length,
171
+ written: buf.length
172
+ };
173
+ };
174
+ }
175
+
176
+ let WASM_VECTOR_LEN = 0;
177
+
178
+ let wasmModule, wasmInstance, wasm;
179
+ function __wbg_finalize_init(instance, module) {
180
+ wasmInstance = instance;
181
+ wasm = instance.exports;
182
+ wasmModule = module;
183
+ cachedDataViewMemory0 = null;
184
+ cachedUint8ArrayMemory0 = null;
185
+ return wasm;
186
+ }
187
+
188
+ async function __wbg_load(module, imports) {
189
+ if (typeof Response === 'function' && module instanceof Response) {
190
+ if (typeof WebAssembly.instantiateStreaming === 'function') {
191
+ try {
192
+ return await WebAssembly.instantiateStreaming(module, imports);
193
+ } catch (e) {
194
+ const validResponse = module.ok && expectedResponseType(module.type);
195
+
196
+ if (validResponse && module.headers.get('Content-Type') !== 'application/wasm') {
197
+ 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);
198
+
199
+ } else { throw e; }
200
+ }
201
+ }
202
+
203
+ const bytes = await module.arrayBuffer();
204
+ return await WebAssembly.instantiate(bytes, imports);
205
+ } else {
206
+ const instance = await WebAssembly.instantiate(module, imports);
207
+
208
+ if (instance instanceof WebAssembly.Instance) {
209
+ return { instance, module };
210
+ } else {
211
+ return instance;
212
+ }
213
+ }
214
+
215
+ function expectedResponseType(type) {
216
+ switch (type) {
217
+ case 'basic': case 'cors': case 'default': return true;
218
+ }
219
+ return false;
220
+ }
221
+ }
222
+
223
+ function initSync(module) {
224
+ if (wasm !== undefined) return wasm;
225
+
226
+
227
+ if (module !== undefined) {
228
+ if (Object.getPrototypeOf(module) === Object.prototype) {
229
+ ({module} = module)
230
+ } else {
231
+ console.warn('using deprecated parameters for `initSync()`; pass a single object instead')
232
+ }
233
+ }
234
+
235
+ const imports = __wbg_get_imports();
236
+ if (!(module instanceof WebAssembly.Module)) {
237
+ module = new WebAssembly.Module(module);
238
+ }
239
+ const instance = new WebAssembly.Instance(module, imports);
240
+ return __wbg_finalize_init(instance, module);
241
+ }
242
+
243
+ async function __wbg_init(module_or_path) {
244
+ if (wasm !== undefined) return wasm;
245
+
246
+
247
+ if (module_or_path !== undefined) {
248
+ if (Object.getPrototypeOf(module_or_path) === Object.prototype) {
249
+ ({module_or_path} = module_or_path)
250
+ } else {
251
+ console.warn('using deprecated parameters for the initialization function; pass a single object instead')
252
+ }
253
+ }
254
+
255
+ if (module_or_path === undefined) {
256
+ module_or_path = new URL('hyperdag_proof_verifier_bg.wasm', import.meta.url);
257
+ }
258
+ const imports = __wbg_get_imports();
259
+
260
+ if (typeof module_or_path === 'string' || (typeof Request === 'function' && module_or_path instanceof Request) || (typeof URL === 'function' && module_or_path instanceof URL)) {
261
+ module_or_path = fetch(module_or_path);
262
+ }
263
+
264
+ const { instance, module } = await __wbg_load(await module_or_path, imports);
265
+
266
+ return __wbg_finalize_init(instance, module);
267
+ }
268
+
269
+ export { initSync, __wbg_init as default };
@@ -1,9 +1,9 @@
1
- /* tslint:disable */
2
- /* eslint-disable */
3
- export const memory: WebAssembly.Memory;
4
- export const verify_proof: (a: number, b: number, c: number) => void;
5
- export const init_panic_hook: () => void;
6
- export const __wbindgen_export: (a: number, b: number, c: number) => void;
7
- export const __wbindgen_export2: (a: number, b: number) => number;
8
- export const __wbindgen_export3: (a: number, b: number, c: number, d: number) => number;
9
- export const __wbindgen_add_to_stack_pointer: (a: number) => number;
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ export const memory: WebAssembly.Memory;
4
+ export const verify_proof: (a: number, b: number, c: number) => void;
5
+ export const init_panic_hook: () => void;
6
+ export const __wbindgen_export: (a: number, b: number, c: number) => void;
7
+ export const __wbindgen_export2: (a: number, b: number) => number;
8
+ export const __wbindgen_export3: (a: number, b: number, c: number, d: number) => number;
9
+ export const __wbindgen_add_to_stack_pointer: (a: number) => number;
@@ -1,21 +1,23 @@
1
- {
2
- "name": "hyperdag-proof-verifier",
3
- "type": "module",
4
- "description": "Client-side Plonky3 STARK verifier for HyperDAG RepID proofs",
5
- "version": "0.1.0",
6
- "license": "MIT OR Apache-2.0",
7
- "repository": {
8
- "type": "git",
9
- "url": "https://github.com/DealAppSeo/hyperdag-proof-verifier"
10
- },
11
- "files": [
12
- "hyperdag_proof_verifier_bg.wasm",
13
- "hyperdag_proof_verifier.js",
14
- "hyperdag_proof_verifier.d.ts"
15
- ],
16
- "main": "hyperdag_proof_verifier.js",
17
- "types": "hyperdag_proof_verifier.d.ts",
18
- "sideEffects": [
19
- "./snippets/*"
20
- ]
1
+ {
2
+ "name": "hyperdag-proof-verifier",
3
+ "type": "module",
4
+ "description": "Client-side Plonky3 STARK verifier for HyperDAG RepID proofs",
5
+ "version": "0.2.0",
6
+ "license": "MIT OR Apache-2.0",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "https://github.com/DealAppSeo/hyperdag-proof-verifier"
10
+ },
11
+ "files": [
12
+ "hyperdag_proof_verifier_bg.wasm",
13
+ "hyperdag_proof_verifier.js",
14
+ "hyperdag_proof_verifier.d.ts",
15
+ "LICENSE-APACHE",
16
+ "LICENSE-MIT"
17
+ ],
18
+ "main": "hyperdag_proof_verifier.js",
19
+ "types": "hyperdag_proof_verifier.d.ts",
20
+ "sideEffects": [
21
+ "./snippets/*"
22
+ ]
21
23
  }
package/LICENSE-MIT DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 DealAppSeo
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
package/pkg/LICENSE-MIT DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 DealAppSeo
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 DealAppSeo
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.