-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2 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
{
"name": "dewai",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --port 1420",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"build:release": "npm run build && npm run tauri build",
"build:docker": "docker build -t dewai-dev .",
"dev:docker": "docker-compose up",
"dev:docker-build": "docker-compose up --build",
"test": "vitest run",
"test:watch": "vitest",
"docs:api": "typedoc",
"docs:preview": "npx serve -l 5050 docs"
},
"dependencies": {
"@chakra-ui/card": "^2.2.0",
"@chakra-ui/checkbox": "^2.3.2",
"@chakra-ui/form-control": "^2.2.0",
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/layout": "^2.3.1",
"@chakra-ui/number-input": "^2.1.2",
"@chakra-ui/react": "^3.16.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@praha/byethrow-mcp": "^0.1.1",
"@tauri-apps/api": "^2.5.0",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-sql": "^2.3.0",
"@types/dompurify": "^3.0.5",
"dompurify": "^3.2.6",
"framer-motion": "^12.7.4",
"jsonrepair": "^3.13.0",
"next-themes": "^0.4.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.5.0",
"react-router-dom": "^7.4.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"postcss": "^8.5.3",
"typedoc": "^0.28.10",
"typescript": "~5.6.2",
"vite": "^6.2.3",
"vitest": "^3.2.4"
},
"description": "This template should help get you started developing with Tauri, React and Typescript in Vite.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/enoki003/DewAI.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/enoki003/DewAI/issues"
},
"homepage": "https://github.com/enoki003/DewAI#readme"
}