-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.48 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.48 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "markdown-agent-studio",
"version": "0.6.8",
"description": "A visual IDE for building, orchestrating, and observing autonomous AI agent teams.",
"license": "MIT",
"author": "RobThePCGuy",
"homepage": "https://github.com/RobThePCGuy/markdown-agent-studio#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/RobThePCGuy/markdown-agent-studio.git"
},
"bugs": {
"url": "https://github.com/RobThePCGuy/markdown-agent-studio/issues"
},
"keywords": [
"ai-agents",
"multi-agent",
"markdown",
"react",
"vite",
"visualization",
"orchestration"
],
"engines": {
"node": ">=20.19.0"
},
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"bin": {
"markdown-agent-studio": "bin/markdown-agent-studio.js"
},
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"files": [
"dist",
"bin/markdown-agent-studio.js",
"index.js",
"index.d.ts",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"check:bundle": "node scripts/check-bundle-size.mjs",
"preview": "vite preview",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"check:all": "npm run lint && npm run test && npm run build && npm run check:bundle",
"clean": "node -e \"const fs=require('fs');['node_modules','dist','package-lock.json'].forEach(p=>{try{fs.rmSync(p,{recursive:true,force:true})}catch{}})\"",
"commit:checked": "node scripts/checked-commit.mjs",
"commit:publish": "node scripts/checked-commit.mjs --stage-publish",
"release:patch": "npm run check:all && npm version patch && npm publish",
"release:minor": "npm run check:all && npm version minor && npm publish",
"release:major": "npm run check:all && npm version major && npm publish",
"prepack": "npm run build"
},
"overrides": {
"dompurify": "^3.3.2",
"@eslint/config-array": {
"minimatch": "^10.2.1"
},
"@eslint/eslintrc": {
"minimatch": "^10.2.1"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "^10.2.1"
},
"eslint": {
"minimatch": "^10.2.1"
}
},
"dependencies": {
"@anthropic-ai/sdk": "^0.91.1",
"@dagrejs/dagre": "^3.0.0",
"@google/genai": "^1.50.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@monaco-editor/react": "^4.7.0",
"@huggingface/transformers": "^4.2.0",
"@xyflow/react": "^12.10.0",
"allotment": "^1.20.5",
"buffer": "^6.0.3",
"gray-matter": "^4.0.3",
"openai": "^6.25.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"zustand": "^5.0.11"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^25.3.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"globals": "^17.3.0",
"happy-dom": "^20.6.1",
"jsdom": "^29.1.0",
"typescript": "~6.0.3",
"typescript-eslint": "^8.48.0",
"vite": "^8.0.10",
"vitest": "^4.0.18"
}
}