-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.82 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.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
{
"name": "boring-blocks",
"version": "0.0.0-alpha.2",
"description": "Boring react components for classic shadcn style productivity UIs",
"author": "PrettyCoffee",
"license": "MIT",
"type": "module",
"files": [
"src",
"tailwind",
"scripts",
"tsconfig.json",
"tsconfig.*.json",
"vite.config.ts",
"*.md"
],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./icons": {
"import": "./dist/index-icons.mjs",
"types": "./dist/index-icons.d.ts"
},
"./theme": {
"import": "./dist/index-theme.mjs",
"types": "./dist/index-theme.d.ts"
},
"./utils": {
"import": "./dist/index-utils.mjs",
"types": "./dist/index-utils.d.ts"
},
"./tailwind": "./tailwind/index.ts"
},
"bin": {
"boring-blocks": "./scripts/cli.mjs"
},
"scripts": {
"start": "pnpm run build && pnpm run --filter ./docs start",
"build": "node ./scripts/build.mjs",
"build:docs": "pnpm run build && pnpm run --filter ./docs build",
"l10n:build": "lingui extract --clean && lingui compile --typescript",
"lint": "tsc -b && eslint",
"lint:fix": "pnpm run lint --fix",
"test": "vitest"
},
"peerDependencies": {
"@base-ui/react": "^1.3.0",
"@floating-ui/react": "^0.27.19",
"@floating-ui/react-dom": "^2.1.8",
"@lingui/core": "^6.0.1",
"@yaasl/react": "^0.15.0-alpha.1",
"goober": "^2.1.18",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4.2.1"
},
"dependencies": {
"class-variance-authority": "^0.7.1",
"lucide-react": "^1.8.0",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@base-ui/react": "1.4.0",
"@floating-ui/react": "0.27.19",
"@floating-ui/react-dom": "2.1.8",
"@lingui/babel-plugin-lingui-macro": "6.0.1",
"@lingui/cli": "6.0.1",
"@lingui/core": "6.0.1",
"@lingui/vite-plugin": "6.0.1",
"@pretty-cozy/eslint-config": "0.9.0",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "4.2.2",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.1",
"@yaasl/react": "0.15.0-alpha.1",
"eslint": "9.39.4",
"eslint-plugin-storybook": "10.3.5",
"eslint-plugin-testing-library": "7.16.2",
"goober": "2.1.18",
"happy-dom": "20.9.0",
"react": "19.2.5",
"react-dom": "19.2.5",
"tailwindcss": "4.2.2",
"temporal-polyfill": "0.3.2",
"typescript": "6.0.2",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"pnpm": {
"overrides": {
"typescript": "6.0.2"
}
}
}