@objectstack/metadata 0.9.1 → 0.9.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.
- package/CHANGELOG.md +9 -0
- package/README.md +7 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -12,6 +12,13 @@ The `@objectstack/metadata` package provides a unified interface for managing me
|
|
|
12
12
|
- **Caching** - ETag-based caching for performance optimization
|
|
13
13
|
- **File Watching** - Development mode with automatic reload on file changes
|
|
14
14
|
|
|
15
|
+
## 🤖 AI Development Context
|
|
16
|
+
|
|
17
|
+
**Role**: Metadata IO & Persistence
|
|
18
|
+
**Usage**:
|
|
19
|
+
- Use `MetadataManager` to read/write `.object.ts`, `.view.yaml` files.
|
|
20
|
+
- Handles format loading (TS, JSON, YAML).
|
|
21
|
+
|
|
15
22
|
## Installation
|
|
16
23
|
|
|
17
24
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@objectstack/metadata",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.2",
|
|
4
4
|
"description": "Metadata loading, saving, and persistence for ObjectStack",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"js-yaml": "^4.1.0",
|
|
17
17
|
"chokidar": "^3.5.3",
|
|
18
18
|
"zod": "^4.3.6",
|
|
19
|
-
"@objectstack/core": "0.9.
|
|
20
|
-
"@objectstack/spec": "0.9.
|
|
21
|
-
"@objectstack/types": "0.9.
|
|
19
|
+
"@objectstack/core": "0.9.2",
|
|
20
|
+
"@objectstack/spec": "0.9.2",
|
|
21
|
+
"@objectstack/types": "0.9.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/js-yaml": "^4.0.9",
|