-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "agentic-epistemology-framework",
"version": "1.0.0",
"description": "A TypeScript reference implementation of the Agentic Epistemology Framework (AEF)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"docs": "typedoc --out docs src",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"agent",
"epistemology",
"ai",
"reasoning",
"belief",
"multi-agent",
"frame"
],
"author": "Jason Roell",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"@vitest/ui": "^3.2.2",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.24.4",
"typescript": "^5.0.4",
"vitest": "^3.2.2"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jroell/agentic-epistemology-framework.git"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@google/generative-ai": "^0.24.0",
"@types/react": "^19.1.2",
"chalk": "^5.4.1",
"dotenv": "^16.5.0",
"ink": "^5.2.0",
"react": "^18.3.1"
}
}