@uvrn/api 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/api
2
2
 
3
- UVRN REST API — HTTP server for Delta Engine bundle processing. Exposes run, validate, and verify over HTTP so any client (browser, script, or service) can call the engine without installing the core or SDK. **Release:** 1.3.0.
3
+ UVRN REST API — HTTP server for Delta Engine bundle processing. Exposes run, validate, and verify over HTTP so any client (browser, script, or service) can call the engine without installing the core or SDK. **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/server.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,12 +1,21 @@
1
1
  {
2
2
  "name": "@uvrn/api",
3
- "version": "1.3.0",
4
- "publishConfig": { "access": "public" },
3
+ "version": "1.4.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
5
7
  "description": "UVRN REST API — HTTP access to bundle processing",
6
8
  "main": "dist/index.js",
7
9
  "types": "dist/index.d.ts",
8
- "bin": { "uvrn-api": "dist/server.js" },
9
- "keywords": ["uvrn", "rest-api", "bundle", "protocol"],
10
+ "bin": {
11
+ "uvrn-api": "dist/server.js"
12
+ },
13
+ "keywords": [
14
+ "uvrn",
15
+ "rest-api",
16
+ "bundle",
17
+ "protocol"
18
+ ],
10
19
  "license": "MIT",
11
20
  "repository": {
12
21
  "type": "git",
@@ -14,20 +23,12 @@
14
23
  "directory": "uvrn-api"
15
24
  },
16
25
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
17
- "scripts": {
18
- "dev": "tsx watch src/server.ts",
19
- "build": "tsc",
20
- "start": "node dist/server.js",
21
- "test": "jest",
22
- "lint": "eslint src/**/*.ts",
23
- "clean": "rm -rf dist"
24
- },
25
26
  "dependencies": {
26
- "@uvrn/core": "workspace:^",
27
27
  "fastify": "^5.7.3",
28
28
  "@fastify/cors": "^10.0.0",
29
29
  "@fastify/rate-limit": "^10.0.0",
30
- "@fastify/helmet": "^12.0.0"
30
+ "@fastify/helmet": "^12.0.0",
31
+ "@uvrn/core": "^1.4.0"
31
32
  },
32
33
  "devDependencies": {
33
34
  "@types/node": "^20.0.0",
@@ -41,6 +42,19 @@
41
42
  "tsx": "^4.7.0",
42
43
  "typescript": "^5.3.0"
43
44
  },
44
- "engines": { "node": ">=20.0.0" },
45
- "files": ["dist", "README.md"]
46
- }
45
+ "engines": {
46
+ "node": ">=20.0.0"
47
+ },
48
+ "files": [
49
+ "dist",
50
+ "README.md"
51
+ ],
52
+ "scripts": {
53
+ "dev": "tsx watch src/server.ts",
54
+ "build": "tsc",
55
+ "start": "node dist/server.js",
56
+ "test": "jest",
57
+ "lint": "eslint src/**/*.ts",
58
+ "clean": "rm -rf dist"
59
+ }
60
+ }