@hesohq/core 0.1.2-dev.21

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/browser.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // @hesohq/core/browser — re-exports the wasm verify-only surface.
2
+ export * from '@hesohq/verify-wasm'
package/browser.js ADDED
@@ -0,0 +1,3 @@
1
+ // @hesohq/core/browser — re-exports the wasm verify-only surface.
2
+ // Import with: import * as heso from '@hesohq/core/browser'
3
+ export * from '@hesohq/verify-wasm'
package/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ // @hesohq/core — re-exports the native Node.js addon type surface.
2
+ export * from '@hesohq/node'
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ 'use strict'
2
+
3
+ // @hesohq/core — Node.js entry point.
4
+ // Re-exports the napi addon from @hesohq/node (which contains the full
5
+ // platform-specific loader generated by napi-rs v2).
6
+ module.exports = require('@hesohq/node')
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "@hesohq/core",
3
+ "version": "0.1.2-dev.21",
4
+ "description": "HESO Enterprise trust layer — Node.js native addon + browser WASM wrapper",
5
+ "main": "./index.js",
6
+ "types": "./index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "require": "./index.js",
10
+ "types": "./index.d.ts"
11
+ },
12
+ "./browser": {
13
+ "import": "./browser.js",
14
+ "types": "./browser.d.ts"
15
+ }
16
+ },
17
+ "files": [
18
+ "index.js",
19
+ "index.d.ts",
20
+ "browser.js",
21
+ "browser.d.ts"
22
+ ],
23
+ "dependencies": {
24
+ "@hesohq/node": "0.1.2-dev.21",
25
+ "@hesohq/verify-wasm": "0.1.2-dev.21"
26
+ },
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "license": "LicenseRef-Proprietary"
31
+ }