-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "uduck-registry",
"version": "1.0.0",
"description": "Community behavior registry for Microduck.",
"scripts": {
"dev": "next dev",
"build": "pnpm compile && next build --webpack",
"start": "python3 -m http.server 3000 --directory out",
"test": "vitest run",
"check": "pnpm validate && pnpm test && pnpm build",
"validate": "tsx scripts/validate-registry.ts",
"compile": "tsx scripts/generate-registry-index.ts",
"uduck": "tsx scripts/uduck.ts",
"policies:prepare": "tsx scripts/uduck.ts prepare"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.3.0",
"onFail": "download"
}
},
"type": "module",
"dependencies": {
"lucide-react": "^1.34.0",
"next": "^16.3.3",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^26.3.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.5",
"postcss": "^8.5.26",
"tailwindcss": "^4.3.3",
"tsx": "^4.23.12",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}