-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.02 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.02 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
{
"name": "entity",
"version": "2.1.0",
"description": "Autopoietic Entity System - ISO AES-SPEC-001 Conformant",
"type": "module",
"main": "dist/src/index.js",
"bin": {
"entity": "dist/src/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"verify": "node dist/src/index.js verify",
"status": "node dist/src/index.js status",
"test": "tsc && node --test dist/test/*.js",
"test:watch": "tsc --watch & node --test --watch dist/test/*.js"
},
"keywords": [
"autopoiesis",
"lyapunov",
"event-sourcing",
"merkle-chain",
"active-inference",
"self-organization",
"mcp",
"model-context-protocol"
],
"author": "Luca Rossignoli",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/rossignoliluca/entity.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}