@uvrn/mcp 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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +0 -0
  3. package/package.json +34 -19
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![npm version](https://img.shields.io/npm/v/@uvrn/mcp.svg)](https://www.npmjs.com/package/@uvrn/mcp)
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- **Release:** 1.3.0.
8
+ **Release:** 1.4.0.
9
9
 
10
10
  **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.
11
11
 
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,12 +1,22 @@
1
1
  {
2
2
  "name": "@uvrn/mcp",
3
- "version": "1.3.0",
4
- "publishConfig": { "access": "public" },
3
+ "version": "1.4.0",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
5
7
  "description": "UVRN MCP server — AI-native bundle processing",
6
8
  "main": "dist/index.js",
7
9
  "types": "dist/index.d.ts",
8
- "bin": { "uvrn-mcp": "dist/index.js" },
9
- "keywords": ["uvrn", "mcp", "verification", "receipt", "ai"],
10
+ "bin": {
11
+ "uvrn-mcp": "dist/index.js"
12
+ },
13
+ "keywords": [
14
+ "uvrn",
15
+ "mcp",
16
+ "verification",
17
+ "receipt",
18
+ "ai"
19
+ ],
10
20
  "author": "UVRN",
11
21
  "license": "MIT",
12
22
  "repository": {
@@ -15,19 +25,9 @@
15
25
  "directory": "uvrn-mcp"
16
26
  },
17
27
  "homepage": "https://github.com/UVRN-org/uvrn-packages#readme",
18
- "scripts": {
19
- "build": "tsc",
20
- "dev": "tsc --watch",
21
- "test": "vitest",
22
- "test:coverage": "vitest --coverage",
23
- "start": "node dist/index.js",
24
- "clean": "rm -rf dist",
25
- "lint": "eslint src --ext .ts",
26
- "format": "prettier --write \"src/**/*.ts\""
27
- },
28
28
  "dependencies": {
29
- "@uvrn/core": "workspace:^",
30
- "@modelcontextprotocol/sdk": "^1.27.1"
29
+ "@modelcontextprotocol/sdk": "^1.27.1",
30
+ "@uvrn/core": "^1.4.0"
31
31
  },
32
32
  "devDependencies": {
33
33
  "@types/node": "^20.0.0",
@@ -39,6 +39,21 @@
39
39
  "typescript": "^5.3.0",
40
40
  "vitest": "^1.0.0"
41
41
  },
42
- "engines": { "node": ">=18.0.0" },
43
- "files": ["dist", "README.md"]
44
- }
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "files": [
46
+ "dist",
47
+ "README.md"
48
+ ],
49
+ "scripts": {
50
+ "build": "tsc",
51
+ "dev": "tsc --watch",
52
+ "test": "vitest",
53
+ "test:coverage": "vitest --coverage",
54
+ "start": "node dist/index.js",
55
+ "clean": "rm -rf dist",
56
+ "lint": "eslint src --ext .ts",
57
+ "format": "prettier --write \"src/**/*.ts\""
58
+ }
59
+ }