@uvrn/sdk 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/LICENSE +1 -1
- package/README.md +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +32 -17
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025
|
|
3
|
+
Copyright (c) 2025 UVRN / Suttle Media LLC
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
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. **Release:** 1.
|
|
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.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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uvrn/sdk",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"publishConfig": {
|
|
3
|
+
"version": "1.4.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public"
|
|
6
|
+
},
|
|
5
7
|
"description": "UVRN TypeScript SDK — programmatic access to deterministic verification",
|
|
6
8
|
"main": "dist/index.js",
|
|
7
9
|
"types": "dist/index.d.ts",
|
|
@@ -11,7 +13,14 @@
|
|
|
11
13
|
"types": "./dist/index.d.ts"
|
|
12
14
|
}
|
|
13
15
|
},
|
|
14
|
-
"keywords": [
|
|
16
|
+
"keywords": [
|
|
17
|
+
"uvrn",
|
|
18
|
+
"sdk",
|
|
19
|
+
"verification",
|
|
20
|
+
"receipt",
|
|
21
|
+
"deterministic",
|
|
22
|
+
"typescript"
|
|
23
|
+
],
|
|
15
24
|
"license": "MIT",
|
|
16
25
|
"repository": {
|
|
17
26
|
"type": "git",
|
|
@@ -19,21 +28,11 @@
|
|
|
19
28
|
"directory": "uvrn-sdk"
|
|
20
29
|
},
|
|
21
30
|
"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:*",
|
|
37
36
|
"@types/jest": "^29.5.0",
|
|
38
37
|
"@types/node": "^20.0.0",
|
|
39
38
|
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
@@ -41,8 +40,24 @@
|
|
|
41
40
|
"eslint": "^8.0.0",
|
|
42
41
|
"jest": "^29.5.0",
|
|
43
42
|
"ts-jest": "^29.1.0",
|
|
44
|
-
"typescript": "^5.3.0"
|
|
43
|
+
"typescript": "^5.3.0",
|
|
44
|
+
"@uvrn/core": "1.4.0"
|
|
45
45
|
},
|
|
46
|
-
"engines": {
|
|
47
|
-
|
|
48
|
-
}
|
|
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
|
+
}
|