@uvrn/sdk 1.0.3 → 1.3.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.
Files changed (2) hide show
  1. package/README.md +3 -1
  2. package/package.json +17 -32
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # @uvrn/sdk
2
2
 
3
- TypeScript SDK for the [UVRN Delta Engine](https://github.com/UVRN-org/uvrn-packages) — programmatic access to deterministic verification and consensus computation.
3
+ TypeScript SDK for the [UVRN Delta Engine](https://github.com/UVRN-org/uvrn-packages) — programmatic access to deterministic verification and consensus computation. **Release:** 1.3.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
 
7
+ *UVRN makes no claims to "truth", the "verification" is the output of math — it is up to any user to decide if claim is actually "true" — Research and testing are absolutely recommended per use case and individual system!!*
8
+
7
9
  ## Overview
8
10
 
9
11
  The Delta Engine SDK provides a developer-friendly interface to interact with the Delta Engine in multiple execution modes:
package/package.json CHANGED
@@ -1,9 +1,7 @@
1
1
  {
2
2
  "name": "@uvrn/sdk",
3
- "version": "1.0.3",
4
- "publishConfig": {
5
- "access": "public"
6
- },
3
+ "version": "1.3.0",
4
+ "publishConfig": { "access": "public" },
7
5
  "description": "UVRN TypeScript SDK — programmatic access to deterministic verification",
8
6
  "main": "dist/index.js",
9
7
  "types": "dist/index.d.ts",
@@ -13,14 +11,7 @@
13
11
  "types": "./dist/index.d.ts"
14
12
  }
15
13
  },
16
- "keywords": [
17
- "uvrn",
18
- "sdk",
19
- "verification",
20
- "receipt",
21
- "deterministic",
22
- "typescript"
23
- ],
14
+ "keywords": ["uvrn", "sdk", "verification", "receipt", "deterministic", "typescript"],
24
15
  "license": "MIT",
25
16
  "repository": {
26
17
  "type": "git",
@@ -28,11 +19,21 @@
28
19
  "directory": "uvrn-sdk"
29
20
  },
30
21
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
22
+ "scripts": {
23
+ "build": "npm run clean && tsc",
24
+ "build:watch": "tsc --watch",
25
+ "clean": "rm -rf dist dist-esm tsconfig.tsbuildinfo",
26
+ "test": "jest",
27
+ "test:watch": "jest --watch",
28
+ "test:coverage": "jest --coverage",
29
+ "lint": "eslint src/**/*.ts"
30
+ },
31
31
  "peerDependencies": {
32
32
  "@uvrn/core": "^1.0.0"
33
33
  },
34
34
  "dependencies": {},
35
35
  "devDependencies": {
36
+ "@uvrn/core": "workspace:*",
36
37
  "@types/jest": "^29.5.0",
37
38
  "@types/node": "^20.0.0",
38
39
  "@typescript-eslint/eslint-plugin": "^6.0.0",
@@ -40,24 +41,8 @@
40
41
  "eslint": "^8.0.0",
41
42
  "jest": "^29.5.0",
42
43
  "ts-jest": "^29.1.0",
43
- "typescript": "^5.3.0",
44
- "@uvrn/core": "1.0.3"
44
+ "typescript": "^5.3.0"
45
45
  },
46
- "engines": {
47
- "node": ">=18.0.0"
48
- },
49
- "files": [
50
- "dist",
51
- "README.md",
52
- "LICENSE"
53
- ],
54
- "scripts": {
55
- "build": "npm run clean && tsc",
56
- "build:watch": "tsc --watch",
57
- "clean": "rm -rf dist dist-esm tsconfig.tsbuildinfo",
58
- "test": "jest",
59
- "test:watch": "jest --watch",
60
- "test:coverage": "jest --coverage",
61
- "lint": "eslint src/**/*.ts"
62
- }
63
- }
46
+ "engines": { "node": ">=18.0.0" },
47
+ "files": ["dist", "README.md", "LICENSE"]
48
+ }