-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.52 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.52 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": "org-studio",
"version": "0.1.1",
"description": "Org design and management for human-in-the-loop agent organizations",
"license": "MIT",
"bin": {
"org-studio": "./bin/org-studio.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ToomeSauce/org-studio"
},
"keywords": [
"agents",
"ai",
"openclaw",
"org-design",
"project-management",
"human-in-the-loop"
],
"files": [
".next",
"server.mjs",
"data",
"public",
"package.json",
"bin"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"clsx": "^2.1.1",
"geist": "^1.7.0",
"lucide-react": "^0.576.0",
"next": "^16.2.2",
"pg": "^8.20.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-toastify": "^11.0.5",
"remark-gfm": "^4.0.1",
"semver": "^7.7.4",
"ws": "^8.19.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"gif-encoder-2": "^1.0.5",
"png-js": "^1.0.0",
"pngjs": "^7.0.0",
"puppeteer-core": "^24.39.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.0"
}
}