@uvrn/core 1.3.0 → 1.4.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # @uvrn/core
2
2
 
3
- UVRN Delta Engine core — deterministic multi-source comparison and verification. Runs the Delta formula on bundles, produces canonical receipts with SHA-256 hashes, and validates or verifies bundles and receipts. **Release:** 1.3.0.
3
+ UVRN Delta Engine core — deterministic multi-source comparison and verification. Runs the Delta formula on bundles, produces canonical receipts with SHA-256 hashes, and validates or verifies bundles and receipts. **Release:** 1.4.0.
4
4
 
5
5
  **Disclaimer:** UVRN is in Alpha testing. The engine measures whether your sources agree with each other — not whether they’re correct. Final trust of output rests with the user. Use at your own risk. Have fun.
6
6
 
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Loosechain Delta Engine Core
2
+ * UVRN Delta Engine Core
3
3
  * Layer 1 Protocol Infrastructure
4
4
  */
5
5
  export * from './types';
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * Loosechain Delta Engine Core
3
+ * UVRN Delta Engine Core
4
4
  * Layer 1 Protocol Infrastructure
5
5
  */
6
6
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Loosechain Layer 1: Delta Engine Core - Types
2
+ * UVRN Layer 1: Delta Engine Core - Types
3
3
  * These types constitute the "Protocol Law" and must remain stable.
4
4
  */
5
5
  export interface MetricPoint {
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  /**
3
- * Loosechain Layer 1: Delta Engine Core - Types
3
+ * UVRN Layer 1: Delta Engine Core - Types
4
4
  * These types constitute the "Protocol Law" and must remain stable.
5
5
  */
6
6
  Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,11 +1,18 @@
1
1
  {
2
2
  "name": "@uvrn/core",
3
- "version": "1.3.0",
4
- "publishConfig": { "access": "public" },
3
+ "version": "1.4.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
5
7
  "description": "UVRN engine core — deterministic protocol infrastructure",
6
8
  "main": "dist/index.js",
7
9
  "types": "dist/index.d.ts",
8
- "keywords": ["uvrn", "deterministic", "protocol", "consensus"],
10
+ "keywords": [
11
+ "uvrn",
12
+ "deterministic",
13
+ "protocol",
14
+ "consensus"
15
+ ],
9
16
  "license": "MIT",
10
17
  "repository": {
11
18
  "type": "git",
@@ -13,14 +20,6 @@
13
20
  "directory": "uvrn-core"
14
21
  },
15
22
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
16
- "scripts": {
17
- "build": "tsc",
18
- "test": "jest",
19
- "test:watch": "jest --watch",
20
- "test:coverage": "jest --coverage",
21
- "lint": "eslint src/**/*.ts",
22
- "clean": "rm -rf dist"
23
- },
24
23
  "devDependencies": {
25
24
  "@types/jest": "^29.5.0",
26
25
  "@types/node": "^20.0.0",
@@ -32,6 +31,19 @@
32
31
  "typescript": "^5.3.0"
33
32
  },
34
33
  "dependencies": {},
35
- "files": ["dist", "README.md"],
36
- "engines": { "node": ">=18.0.0" }
37
- }
34
+ "files": [
35
+ "dist",
36
+ "README.md"
37
+ ],
38
+ "engines": {
39
+ "node": ">=18.0.0"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc",
43
+ "test": "jest",
44
+ "test:watch": "jest --watch",
45
+ "test:coverage": "jest --coverage",
46
+ "lint": "eslint src/**/*.ts",
47
+ "clean": "rm -rf dist"
48
+ }
49
+ }