-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.3 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.3 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "holomime",
"version": "3.5.1",
"description": "Behavioral therapy infrastructure for AI agents — Big Five psychology, structured treatment, behavioral alignment",
"type": "module",
"bin": {
"holomime": "dist/cli.js",
"holomime-mcp": "dist/mcp-server.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./integrations/langchain": {
"import": "./dist/integrations/langchain.js",
"types": "./dist/integrations/langchain.d.ts"
},
"./integrations/openclaw": {
"import": "./dist/integrations/openclaw.js",
"types": "./dist/integrations/openclaw.d.ts"
}
},
"files": [
"dist",
"registry",
"schema",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"mcpName": "io.github.productstein/holomime",
"repository": {
"type": "git",
"url": "git+https://github.com/productstein/holomime.git"
},
"homepage": "https://holomime.com",
"bugs": {
"url": "https://github.com/productstein/holomime/issues"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"keywords": [
"ai",
"agent",
"personality",
"big-five",
"ocean",
"psychology",
"alignment",
"behavioral-analysis",
"behavioral-therapy",
"agent-training",
"system-prompt",
"opentelemetry",
"otel",
"genai",
"drift-detection",
"dpo",
"rlhf",
"fine-tuning",
"anthropic",
"openai",
"claude",
"agents-md",
"personality-json"
],
"author": "holomime <hello@holomime.com>",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"@modelcontextprotocol/sdk": "^1.27.0",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"chokidar": "^5.0.0",
"commander": "^13.0.0",
"figures": "^6.1.0",
"gradient-string": "^3.0.0",
"log-update": "^7.1.0",
"open": "^11.0.0",
"ora": "^9.3.0",
"posthog-node": "^5.25.0",
"ws": "^8.19.0",
"yaml": "^2.8.3",
"zod": "^3.24.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.3.0",
"@types/ws": "^8.18.1",
"tsup": "^8.3.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
}
}