@ai-dossier/core 1.0.3 → 1.1.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 (2) hide show
  1. package/README.md +15 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # @ai-dossier/core
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/@ai-dossier/core)](https://www.npmjs.com/package/@ai-dossier/core)
4
+ [![npm downloads](https://img.shields.io/npm/dm/@ai-dossier/core)](https://www.npmjs.com/package/@ai-dossier/core)
5
+ [![License: AGPL-3.0](https://img.shields.io/badge/License-AGPL--3.0-blue.svg)](https://github.com/imboard-ai/ai-dossier/blob/main/LICENSE)
6
+
3
7
  Core parsing, verification, and linting logic for the [Dossier](https://github.com/imboard-ai/ai-dossier) automation standard.
4
8
 
5
9
  ## Installation
@@ -8,7 +12,7 @@ Core parsing, verification, and linting logic for the [Dossier](https://github.c
8
12
  npm install @ai-dossier/core
9
13
  ```
10
14
 
11
- Requires Node.js >= 18.0.0.
15
+ Requires Node.js >= 20.0.0.
12
16
 
13
17
  ## Quick Start
14
18
 
@@ -227,6 +231,16 @@ import type {
227
231
  } from '@ai-dossier/core';
228
232
  ```
229
233
 
234
+ ## Development
235
+
236
+ Part of the [ai-dossier](https://github.com/imboard-ai/ai-dossier) monorepo.
237
+
238
+ ```bash
239
+ npm run build -w packages/core # build
240
+ npm run test -w packages/core # test
241
+ make build-core # build via Makefile
242
+ ```
243
+
230
244
  ## License
231
245
 
232
246
  [AGPL-3.0](https://github.com/imboard-ai/ai-dossier/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-dossier/core",
3
- "version": "1.0.3",
3
+ "version": "1.1.0",
4
4
  "description": "Core verification and parsing logic for dossier automation standard",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",