-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.88 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "openreason",
"version": "1.0.4",
"description": "Formal Reasoning Engine - Multi-Domain Cognitive System with Specialized Solvers (Math, Logic, Causal, Ethics, Meta, Identity) + Unified Reasoning Graph + Reflexive Self-Audit",
"keywords": [
"ai",
"reasoning",
"llm",
"constitutional-ai",
"langchain",
"cognitive-architecture",
"semantic-evaluation",
"precision-core",
"reasoning-compression"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"openreason": "dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/CaviraOSS/OpenReason.git"
},
"license": "Apache-2.0",
"author": "nullure",
"homepage": "https://github.com/CaviraOSS/OpenReason#readme",
"scripts": {
"start": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"test": "tsx tests/math.test.ts && tsx tests/logic.test.ts && tsx tests/reason.test.ts && tsx tests/langgraph.test.ts",
"bench": "tsx reasonbench/runner.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@keyv/sqlite": "^4.0.6",
"@langchain/anthropic": "^1.0.1",
"@langchain/community": "^1.0.3",
"@langchain/core": "^1.0.5",
"@langchain/google-genai": "^1.0.1",
"@langchain/langgraph": "^1.0.2",
"@langchain/openai": "^1.1.1",
"keyv": "^5.5.4",
"langchain": "^1.0.4"
},
"devDependencies": {
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}