-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 939 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 939 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@logic-md/core",
"version": "1.5.0",
"description": "Parser, validator, expression engine, DAG resolver, and reasoning compiler for the LOGIC.md specification",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1",
"gray-matter": "^4.0.3",
"yaml": "^2.8.4"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SingularityAI-Dev/logic-md.git",
"directory": "packages/core"
},
"keywords": [
"logic-md",
"ai-agents",
"reasoning",
"declarative",
"contracts",
"dag",
"compiler",
"parser",
"validator"
],
"engines": {
"node": ">=18"
}
}