@uvrn/cli 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 (3) hide show
  1. package/README.md +3 -1
  2. package/dist/cli.js +0 -0
  3. package/package.json +17 -32
package/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # @uvrn/cli
2
2
 
3
- Command-line interface for the UVRN Delta Engine. Transform data bundles into verifiable receipts using deterministic comparison and canonical hashing.
3
+ Command-line interface for the UVRN Delta Engine. Transform data bundles into verifiable receipts using deterministic comparison and canonical hashing. **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
  ## Install
8
10
 
9
11
  ### Global Installation (Recommended)
package/dist/cli.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,22 +1,12 @@
1
1
  {
2
2
  "name": "@uvrn/cli",
3
- "version": "1.0.3",
4
- "publishConfig": {
5
- "access": "public"
6
- },
3
+ "version": "1.3.0",
4
+ "publishConfig": { "access": "public" },
7
5
  "description": "UVRN CLI — bundle to receipt",
8
6
  "main": "dist/index.js",
9
7
  "types": "dist/index.d.ts",
10
- "bin": {
11
- "uvrn": "dist/cli.js",
12
- "delta-engine": "dist/cli.js"
13
- },
14
- "keywords": [
15
- "uvrn",
16
- "cli",
17
- "verification",
18
- "receipt"
19
- ],
8
+ "bin": { "uvrn": "dist/cli.js", "delta-engine": "dist/cli.js" },
9
+ "keywords": ["uvrn", "cli", "verification", "receipt"],
20
10
  "license": "MIT",
21
11
  "repository": {
22
12
  "type": "git",
@@ -24,9 +14,17 @@
24
14
  "directory": "uvrn-cli"
25
15
  },
26
16
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "test": "jest",
20
+ "test:watch": "jest --watch",
21
+ "test:coverage": "jest --coverage",
22
+ "lint": "eslint src/**/*.ts",
23
+ "clean": "rm -rf dist"
24
+ },
27
25
  "dependencies": {
28
- "commander": "^11.1.0",
29
- "@uvrn/core": "^1.0.3"
26
+ "@uvrn/core": "workspace:^",
27
+ "commander": "^11.1.0"
30
28
  },
31
29
  "devDependencies": {
32
30
  "@types/jest": "^29.5.0",
@@ -38,19 +36,6 @@
38
36
  "ts-jest": "^29.1.0",
39
37
  "typescript": "^5.3.0"
40
38
  },
41
- "engines": {
42
- "node": ">=18.0.0"
43
- },
44
- "files": [
45
- "dist",
46
- "README.md"
47
- ],
48
- "scripts": {
49
- "build": "tsc",
50
- "test": "jest",
51
- "test:watch": "jest --watch",
52
- "test:coverage": "jest --coverage",
53
- "lint": "eslint src/**/*.ts",
54
- "clean": "rm -rf dist"
55
- }
56
- }
39
+ "engines": { "node": ">=18.0.0" },
40
+ "files": ["dist", "README.md"]
41
+ }