-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.82 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.82 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
128
129
{
"$schema": "https://json.schemastore.org/package.json",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/cli": "^2.31.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"husky": "^9.1.7",
"sherif": "1.11.1",
"turbo": "^2.9.14",
"typescript": "6.0.3"
},
"name": "duck-upload",
"description": "A modular, strategy-based file upload engine with React bindings.",
"author": "gentleduck contributors",
"license": "MIT",
"homepage": "https://gentleduck.org/duck-upload",
"repository": {
"type": "git",
"url": "git+https://github.com/gentleeduck/duck-upload.git"
},
"bugs": {
"url": "https://github.com/gentleeduck/duck-upload/issues"
},
"keywords": [
"gentleduck",
"duck-upload",
"upload",
"react"
],
"packageManager": "bun@1.3.10",
"private": true,
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"check": "biome check .",
"lint": "biome lint .",
"format": "biome format --write .",
"fix": "biome check --write .",
"changeset": "changeset",
"version-packages": "changeset version",
"ci": "bun run check && bun run lint:ws && bun run check-types && bun run test && bun run build",
"release": "bunx turbo run build --filter='./packages/*' && changeset publish",
"clean": "rimraf dist .cache .turbo node_modules .next .velite",
"clean:git": "git clean -xdf .cache .turbo node_modules dist",
"lint:ws": "sherif",
"postinstall": "bun run lint:ws || true",
"prepare": "husky",
"check-types": "turbo run check-types"
},
"resolutions": {
"@gentleduck/calendar": "0.2.1",
"@gentleduck/hooks": "0.1.13",
"@gentleduck/libs": "0.1.16",
"@gentleduck/motion": "0.1.18",
"@gentleduck/primitives": "0.2.9",
"@gentleduck/variants": "0.1.21",
"@gentleduck/vim": "0.1.18"
},
"overrides": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@gentleduck/calendar": "0.2.1",
"@gentleduck/hooks": "0.1.13",
"@gentleduck/libs": "0.1.16",
"@gentleduck/motion": "0.1.18",
"@gentleduck/primitives": "0.2.9",
"@gentleduck/variants": "0.1.21",
"@gentleduck/vim": "0.1.18"
},
"workspaces": {
"packages": [
"packages/*",
"tooling/*"
],
"catalog": {
"@gentleduck/calendar": "0.2.1",
"@gentleduck/hooks": "0.1.13",
"@gentleduck/libs": "0.1.16",
"@gentleduck/motion": "0.1.18",
"@gentleduck/primitives": "0.2.9",
"@gentleduck/variants": "0.1.21",
"@gentleduck/vim": "0.1.18",
"next": "^16.1.1",
"lucide-react": "0.577.0",
"@changesets/cli": "^2.31.0",
"@tabler/icons-react": "3.36.0",
"@tanstack/react-query": "^5.90.15",
"@trpc/client": "^11.8.1",
"@trpc/react-query": "^11.8.1",
"@trpc/server": "^11.8.1",
"@types/node": "^25.3.0",
"@vitejs/plugin-react-swc": "^3.11.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"@tailwindcss/postcss": "4.2.1",
"embla-carousel-react": "8.6.0",
"next-themes": "0.4.6",
"react-day-picker": "9.14.0",
"react-hook-form": "7.71.2",
"react-resizable-panels": "4.7.2",
"recharts": "3.8.0",
"sonner": "2.0.7",
"tailwindcss": "4.2.1",
"tw-animate-css": "1.4.0",
"vaul": "1.1.2",
"tsdown": "0.21.2",
"typescript": "5.9.3",
"vite": "npm:rolldown-vite@^7.3.0",
"vite-bundle-analyzer": "^1.3.2",
"vite-plugin-inspect": "^11.3.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.18",
"zod": "4.3.6"
},
"catalogs": {
"react19": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}
}
}