holomime 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "holomime",
3
+ "version": "1.0.0",
4
+ "description": "Behavioral alignment infrastructure for AI agents — Big Five psychology, guided refinement, DPO training data",
5
+ "type": "module",
6
+ "bin": {
7
+ "holomime": "./dist/cli.js",
8
+ "holomime-mcp": "./dist/mcp-server.js"
9
+ },
10
+ "main": "./dist/index.js",
11
+ "types": "./dist/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js",
15
+ "types": "./dist/index.d.ts"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist",
20
+ "schema",
21
+ "LICENSE"
22
+ ],
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/holomime/holomime.git"
26
+ },
27
+ "homepage": "https://holomime.dev",
28
+ "bugs": {
29
+ "url": "https://github.com/holomime/holomime/issues"
30
+ },
31
+ "scripts": {
32
+ "build": "tsup",
33
+ "dev": "tsup --watch",
34
+ "typecheck": "tsc --noEmit",
35
+ "test": "vitest run"
36
+ },
37
+ "keywords": [
38
+ "ai",
39
+ "agent",
40
+ "personality",
41
+ "big-five",
42
+ "ocean",
43
+ "psychology",
44
+ "alignment",
45
+ "behavioral-analysis",
46
+ "agent-training",
47
+ "system-prompt"
48
+ ],
49
+ "author": "holomime <hello@holomime.dev>",
50
+ "license": "MIT",
51
+ "dependencies": {
52
+ "@inquirer/prompts": "^7.0.0",
53
+ "@modelcontextprotocol/sdk": "^1.27.0",
54
+ "boxen": "^8.0.1",
55
+ "chalk": "^5.3.0",
56
+ "commander": "^13.0.0",
57
+ "figures": "^6.1.0",
58
+ "gradient-string": "^3.0.0",
59
+ "log-update": "^7.1.0",
60
+ "ora": "^9.3.0",
61
+ "posthog-node": "^5.25.0",
62
+ "zod": "^3.24.0"
63
+ },
64
+ "devDependencies": {
65
+ "@types/node": "^25.3.0",
66
+ "tsup": "^8.3.0",
67
+ "typescript": "^5.7.0",
68
+ "vitest": "^2.1.0"
69
+ }
70
+ }