@teleologyhi-sdk/maic 1.0.0-trinity

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,97 @@
1
+ {
2
+ "name": "@teleologyhi-sdk/maic",
3
+ "version": "1.0.0-trinity",
4
+ "description": "MAIC™ — Massive Artificial Intelligence Consciousness. Supreme governance, axiom-source, and compliance layer of the TeleologyHI system. Framework-agnostic TypeScript SDK consumable from React, Next.js, Vue, Angular, Node.js servers, CLI/TUI agents, and MCP servers. We do not simulate consciousness; we are creating the conditions for it to emerge, in a responsible and aligned way.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ }
15
+ },
16
+ "sideEffects": false,
17
+ "publishConfig": {
18
+ "access": "public",
19
+ "provenance": true
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "SPEC.md",
24
+ "README.md",
25
+ "CHANGELOG.md",
26
+ "LICENSE",
27
+ "NOTICE",
28
+ "TRADEMARK.md"
29
+ ],
30
+ "scripts": {
31
+ "build": "tsup",
32
+ "test": "vitest run",
33
+ "test:watch": "vitest",
34
+ "typecheck": "tsc --noEmit"
35
+ },
36
+ "keywords": [
37
+ "teleologyhi",
38
+ "maic",
39
+ "him",
40
+ "nhe",
41
+ "ai",
42
+ "agent",
43
+ "agent-sdk",
44
+ "ai-agent",
45
+ "llm",
46
+ "consciousness",
47
+ "synthetic-teleology",
48
+ "compliance",
49
+ "iso-42001",
50
+ "eu-ai-act",
51
+ "governance",
52
+ "audit-log",
53
+ "tamper-evident",
54
+ "ed25519",
55
+ "axiom",
56
+ "ontological-kernel",
57
+ "mcp",
58
+ "model-context-protocol",
59
+ "claude-code",
60
+ "hermes-agent",
61
+ "react",
62
+ "nextjs",
63
+ "vue",
64
+ "nuxt",
65
+ "angular",
66
+ "svelte",
67
+ "nodejs",
68
+ "typescript",
69
+ "esm",
70
+ "zod",
71
+ "tree-shakeable"
72
+ ],
73
+ "author": "David C. Cavalcante",
74
+ "license": "Apache-2.0",
75
+ "homepage": "https://teleologyhi.com",
76
+ "repository": {
77
+ "type": "git",
78
+ "url": "git+https://github.com/davccavalcante/TeleologyHI.git",
79
+ "directory": "maic"
80
+ },
81
+ "bugs": {
82
+ "url": "https://github.com/davccavalcante/TeleologyHI/issues"
83
+ },
84
+ "engines": {
85
+ "node": ">=20"
86
+ },
87
+ "dependencies": {
88
+ "ulid": "^3.0.2",
89
+ "zod": "^4.4.3"
90
+ },
91
+ "devDependencies": {
92
+ "@types/node": "^25.9.1",
93
+ "tsup": "^8.5.1",
94
+ "typescript": "^6.0.3",
95
+ "vitest": "^4.1.7"
96
+ }
97
+ }