-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.59 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.59 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
{
"name": "openmolt",
"version": "0.1.7",
"description": "Programmatic AI Agent System – create, configure, and run intelligent agents that can use tools, integrations, and LLMs.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"openmolt": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"example": "tsx",
"prepublishOnly": "npm run build",
"docs": "typedoc && NODE_OPTIONS='--require ./docs/preload.cjs' docusaurus build docs",
"docs:dev": "typedoc && NODE_OPTIONS='--require ./docs/preload.cjs' docusaurus start docs",
"docs:clear": "docusaurus clear docs"
},
"keywords": [
"ai",
"agent",
"llm",
"openai",
"anthropic",
"gemini",
"automation",
"tools",
"integrations"
],
"author": "OpenMolt",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.0",
"@aws-sdk/client-s3": "^3.600.0",
"@aws-sdk/s3-request-presigner": "^3.600.0",
"@fal-ai/client": "^1.0.0",
"@google/genai": "^0.7.0",
"dotenv": "^16.4.5",
"liquidjs": "^10.17.0",
"openai": "^4.77.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@docusaurus/core": "^3.6.0",
"@docusaurus/preset-classic": "^3.6.0",
"@docusaurus/tsconfig": "^3.6.0",
"@types/node": "^20.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typedoc-plugin-markdown": "^4.10.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}