-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.21 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.21 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
{
"name": "workshop",
"version": "0.1.0",
"description": "Visual workflow builder for nanohype templates — scaffold, orchestrate, and refine AI projects",
"license": "Apache-2.0",
"author": "nanohype",
"repository": {
"type": "git",
"url": "https://github.com/nanohype/workshop.git"
},
"homepage": "https://github.com/nanohype/workshop",
"keywords": [
"ai",
"agents",
"workflow",
"orchestration",
"claude-code",
"nanohype",
"templates",
"scaffolding",
"composites"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:init": "tsx scripts/db-init.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "tsx scripts/db-init.ts && drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:check": "tsx scripts/db-check.ts",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.11.1",
"@nanohype/sdk": "github:nanohype/nanohype#path:sdk",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@xyflow/react": "^12.10.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.576.0",
"next": "16.2.0",
"next-auth": "5.0.0-beta.30",
"postgres": "^3.4.8",
"quickjs-emscripten": "^0.32.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwind-merge": "^3.5.0",
"uuid": "^13.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/uuid": "^11.0.0",
"@vitest/coverage-v8": "^4.0.18",
"drizzle-kit": "^0.31.9",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"pnpm": {
"onlyBuiltDependencies": [
"@nanohype/sdk",
"esbuild"
],
"overrides": {
"esbuild": ">=0.25.0",
"flatted": ">=3.4.2",
"fast-xml-parser": ">=5.5.7",
"picomatch@^2": "^2.3.2",
"picomatch@^4": "^4.0.4",
"brace-expansion@^1": "^1.1.13",
"brace-expansion@^5": "^5.0.5"
},
"ignoredBuiltDependencies": [
"esbuild",
"sharp",
"unrs-resolver"
]
}
}