-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 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
{
"name": "diceui",
"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",
"cleanup:registry": "pnpm --filter=docs cleanup:registry --loglevel silent",
"build:packages": "pnpm --filter \"@diceui/*\" 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.5",
"@changesets/cli": "^2.29.7",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@vitejs/plugin-react": "^5.1.1",
"expect-type": "^1.2.2",
"jsdom": "^27.2.0",
"rimraf": "^6.1.0",
"turbo": "^2.6.1",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.9"
}
}