-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
127 lines (127 loc) · 3.3 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
124
125
126
127
{
"name": "zeroagent-studio",
"description": "Free visual AI agent builder in the browser. Draw workflows like a flowchart with 203 chainable tools and eight guided quests. Local models (Transformers.js, WebLLM) need no API key; OpenRouter, Groq, and Gemini are optional. No account, no analytics. MIT.",
"private": true,
"version": "0.1.0",
"type": "module",
"license": "MIT",
"author": "sakurablush (https://github.com/sakurablush)",
"homepage": "https://sakurablush.github.io/zeroagent-studio/",
"repository": {
"type": "git",
"url": "git+https://github.com/sakurablush/zeroagent-studio.git"
},
"bugs": {
"url": "https://github.com/sakurablush/zeroagent-studio/issues"
},
"funding": [
"https://github.com/sakurablush/zeroagent-studio#keep-building-optional"
],
"keywords": [
"zeroagent-studio",
"visual-ai",
"ai-agents",
"agent-builder",
"agentic-ai",
"ai-workflow",
"workflow-builder",
"workflow-automation",
"visual-programming",
"no-code",
"low-code",
"flowchart",
"drag-and-drop",
"node-editor",
"react-flow",
"reactflow",
"xyflow",
"orchestration",
"chainable-tools",
"browser-ai",
"client-side-ai",
"browser-only",
"no-backend",
"local-llm",
"offline-ai",
"webllm",
"transformers-js",
"huggingface",
"openrouter",
"groq",
"gemini",
"llm",
"privacy-first",
"no-telemetry",
"no-signup",
"zero-install",
"education",
"students",
"guided-quests",
"interactive-tutorial",
"tutorial",
"web-scraping",
"speech-to-text",
"text-to-speech",
"react",
"vite",
"typescript",
"github-pages",
"open-source"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"typecheck": "tsc -b",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"ci": "npm audit --audit-level=moderate && npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"ci:install": "npm ci",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@mlc-ai/web-llm": "^0.2.79",
"@xyflow/react": "^12.11.1",
"browser-fs-access": "^0.38.0",
"dexie": "^4.0.11",
"framer-motion": "^12.42.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.0.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fake-indexeddb": "^6.2.5",
"gh-pages": "^6.3.0",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.62.0",
"vite": "^8.1.0",
"vitest": "^4.1.9"
},
"overrides": {
"onnxruntime-node": {
"global-agent": "^4.1.3"
}
}
}