@ai-dossier/core 1.0.3 → 1.2.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/README.md +15 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# @ai-dossier/core
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@ai-dossier/core)
|
|
4
|
+
[](https://www.npmjs.com/package/@ai-dossier/core)
|
|
5
|
+
[](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 >=
|
|
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
|
+
"version": "1.2.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",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"url": "https://github.com/imboard-ai/ai-dossier/issues"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
39
|
+
"node": ">=20.0.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public",
|