@mplp/integration-storage-kv 0.0.0-dev → 1.0.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/package.json +14 -1
package/package.json
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$comment": "MPLP Protocol v1.0.0 — Frozen Specification\nFreeze Date: 2025-12-03\nStatus: FROZEN (no breaking changes permitted)\nGovernance: MPLP Protocol Governance Committee (MPGC)\nCopyright: © 2025 邦士(北京)网络科技有限公司\nLicense: Apache-2.0\nAny normative change requires a new protocol version.",
|
|
3
3
|
"name": "@mplp/integration-storage-kv",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"description": "Key-value storage integration for MPLP",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@mplp/core": "1.0.0"
|
|
10
|
+
},
|
|
7
11
|
"devDependencies": {
|
|
8
12
|
"typescript": "^5.0.0",
|
|
9
13
|
"vitest": "^1.0.0",
|
|
10
14
|
"@types/node": "^20.0.0"
|
|
11
15
|
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"mplp": {
|
|
20
|
+
"module": "integration-storage-kv",
|
|
21
|
+
"layer": "L3-Integration",
|
|
22
|
+
"status": "stable",
|
|
23
|
+
"governance": "MPGC"
|
|
24
|
+
},
|
|
12
25
|
"scripts": {
|
|
13
26
|
"build": "tsc -p tsconfig.json",
|
|
14
27
|
"test": "vitest run"
|