-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 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
{
"name": "dotui-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"author": {
"name": "mehdibha",
"url": "https://x.com/mehdibha"
},
"keywords": [
"dotui",
"next.js",
"react-aria",
"tailwind",
"typescript"
],
"engines": {
"node": "^24.11.1",
"pnpm": "^10.24.0"
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"dev:www": "pnpm --filter=www dev",
"build:www": "pnpm --filter=www build",
"build:registry": "pnpm --filter=@dotui/registry build",
"preview:www": "pnpm --filter=www preview",
"dev:registry": "chokidar 'packages/registry/src/ui/**/meta.ts' -c 'pnpm build:registry'",
"build:references": "pnpm --filter=www build:references",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo run clean",
"check": "biome check",
"check:fix": "biome check --write",
"check:ci": "biome ci",
"lint:ws": "pnpm dlx sherif@latest",
"postinstall": "pnpm lint:ws",
"typecheck": "turbo run typecheck",
"test": "vitest run",
"release": "changeset version",
"pub:beta": "pnpm --filter=tailwindcss-autocontrast pub:beta",
"pub:release": "pnpm --filter=tailwindcss-autocontrast pub:release"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@dotui/biome-config": "workspace:*",
"@vitest/coverage-v8": "^4.0.16",
"chokidar-cli": "^3.0.0",
"puppeteer": "^24.26.0",
"tsx": "^4.21.0",
"turbo": "^2.5.8",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"patchedDependencies": {
"@tanstack/start-static-server-functions": "patches/@tanstack__start-static-server-functions.patch"
}
}
}