@mandatez/sdk 0.1.0 → 0.1.2

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 +2 -2
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -77,8 +77,8 @@ Every surface — SDK, dashboard, compliance engine, directory — reads the sam
77
77
 
78
78
  ## Documentation
79
79
 
80
- - [Quickstart](https://docs.mandatez.com/quickstart)
81
- - [SDK Reference](https://docs.mandatez.com/sdk/track)
80
+ - [Quickstart](https://mandatez.mintlify.app/quickstart)
81
+ - [SDK Reference](https://mandatez.mintlify.app/sdk/track)
82
82
  - [Protocol Specification](./protocol/SPEC.md)
83
83
 
84
84
  ## Project Structure
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mandatez/sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "MandateZ SDK — cryptographic identity, event signing, and policy enforcement for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -22,12 +22,6 @@
22
22
  "type": "git",
23
23
  "url": "https://github.com/mandatez/core"
24
24
  },
25
- "scripts": {
26
- "build": "tsc",
27
- "dev": "tsc --watch",
28
- "test": "vitest run",
29
- "test:watch": "vitest"
30
- },
31
25
  "keywords": [
32
26
  "ai",
33
27
  "agents",
@@ -45,5 +39,11 @@
45
39
  "libsodium-wrappers": "^0.8.2",
46
40
  "nanoid": "^5.1.7",
47
41
  "zod": "^4.3.6"
42
+ },
43
+ "scripts": {
44
+ "build": "tsc",
45
+ "dev": "tsc --watch",
46
+ "test": "vitest run",
47
+ "test:watch": "vitest"
48
48
  }
49
- }
49
+ }