-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.09 KB
/
package.json
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
{
"name": "diceui",
"packageManager": "pnpm@9.15.4",
"private": true,
"type": "module",
"workspaces": ["docs", "examples/*", "packages/*"],
"scripts": {
"clean": "rimraf --glob **/node_modules **/dist **/.source **/.turbo **/.next **/pnpm-lock.yaml **/.tsbuildinfo",
"dev": "turbo run dev",
"build": "turbo run build",
"build:registry": "pnpm --filter=docs build:registry --loglevel silent",
"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": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.10.10",
"@vitejs/plugin-react": "^4.3.4",
"expect-type": "^1.1.0",
"jsdom": "^26.0.0",
"rimraf": "^6.0.1",
"turbo": "^2.3.4",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
}
}