-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.92 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
{
"name": "@mozaik-ai/core",
"version": "3.13.1",
"description": "A TypeScript framework for building reactive agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
"core": [
"dist/core/index.d.ts"
],
"providers/openai": [
"dist/providers/openai/index.d.ts"
]
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jigjoy-ai/mozaik.git"
},
"author": "Miodrag Vilotijević",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"test": "rstest run",
"test:watch": "rstest watch",
"test:domain": "rstest run tests/domain",
"test:application": "rstest run tests/application",
"test:infrastructure": "rstest run tests/infrastructure",
"test:coverage": "rstest run --coverage",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"keywords": [
"agentic-environment",
"reactive-agents",
"collaborative-agents",
"non-blocking agents",
"event-driven agents",
"ai-infrastructure",
"ai-developer-tools",
"context-management",
"agent-swarms",
"llm-framework",
"openai",
"typescript framework"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rstest/core": "^0.10.2",
"@rstest/coverage-istanbul": "^0.10.2",
"eslint": "^10.4.1",
"husky": "^9.1.7",
"lint-staged": "^17.0.7",
"prettier": "^3.7.4",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.74.0",
"@google/genai": "^2.6.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"dotenv": "^17.4.1",
"openai": "^6.38.0",
"zod": "^4.3.6"
}
}