-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·86 lines (86 loc) · 2.4 KB
/
package.json
File metadata and controls
executable file
·86 lines (86 loc) · 2.4 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
{
"name": "art-framework",
"version": "0.4.16",
"description": "Agent Runtine (ART) Framework - A browser-first JavaScript/TypeScript framework for building LLM-powered Agentic AI applications that supports MCP and A2A protocols natively",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**/*.ts'",
"type-check": "tsc --noEmit",
"prepare": "pnpm build",
"test:e2e": "playwright test",
"docs:api": "typedoc",
"docs:site": "typedoc --options typedoc.html.json"
},
"keywords": [
"llm",
"agents",
"ai",
"browser",
"typescript",
"framework"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.51.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"dotenv": "^16.5.0",
"eslint": "^8.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.0",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.1",
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"ws": "^8.18.1"
},
"dependencies": {
"groq-sdk": "^0.15.0",
"@anthropic-ai/sdk": "^0.51.0",
"@google/genai": "^1.17.0",
"@modelcontextprotocol/sdk": "^1.12.3",
"@supabase/supabase-js": "^2.56.0",
"@types/mathjs": "^9.4.1",
"@types/mustache": "^4.2.5",
"ajv": "^8.17.1",
"mathjs": "^14.4.0",
"mustache": "^4.2.0",
"openai": "^4.98.0",
"react-syntax-highlighter": "^15.6.1",
"reconnecting-eventsource": "^1.6.4",
"uuid": "^9.0.0",
"zod": "^3.24.2",
"art-mcp-permission-manager": "^0.2.1"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a"
}