forked from sadmann7/diceui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.43 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.43 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
{
"name": "aloeui",
"packageManager": "pnpm@10.22.0",
"private": true,
"type": "module",
"workspaces": [
"docs",
"packages/*"
],
"scripts": {
"clean": "rimraf --glob **/node_modules **/dist **/.source **/.turbo **/.next **/pnpm-lock.yaml **/.tsbuildinfo",
"build": "turbo run build",
"build:registry": "pnpm --filter=docs build:registry --loglevel silent",
"validate:registry": "pnpm --filter=docs validate:registry --loglevel silent",
"cleanup:registry": "pnpm --filter=docs cleanup:registry --loglevel silent",
"test:registry": "pnpm --filter=docs test:registry --loglevel silent",
"build:packages": "pnpm --filter \"@aloeui/*\" build",
"dev": "turbo run dev",
"docs:dev": "turbo run dev --filter=docs",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"typecheck": "turbo typecheck",
"check": "turbo lint typecheck",
"test": "turbo run test",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/cli": "^2.29.8",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.3",
"@vitejs/plugin-react": "^5.1.2",
"expect-type": "^1.3.0",
"jsdom": "^27.4.0",
"rimraf": "^6.1.2",
"turbo": "^2.7.2",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
}
}