-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 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
{
"name": "@gaulatti/bleecker",
"version": "0.1.26",
"repository": {
"type": "git",
"url": "https://github.com/gaulatti/bleecker"
},
"bugs": {
"url": "https://github.com/gaulatti/bleecker/issues"
},
"homepage": "https://github.com/gaulatti/bleecker",
"files": [
"dist",
"dist/styles.css",
"src/styles/global.css"
],
"type": "module",
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./styles.base.css": "./src/styles/global.css"
},
"scripts": {
"build:css": "node -e \"require('node:fs').mkdirSync('dist',{recursive:true})\" && tailwindcss -i src/styles/global.css -o dist/styles.css --minify",
"build": "npm run check:exports-stories && npm run build:css && tsc && node scripts/fix-esm-imports.mjs",
"storybook": "npm run build:css && storybook dev -p 6006",
"build-storybook": "npm run check:exports-stories && npm run build:css && storybook build",
"typecheck": "tsc --noEmit -p tsconfig.json",
"check:exports-stories": "node scripts/check-exports-and-stories.mjs"
},
"peerDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"dependencies": {
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@tanstack/react-table": "^8.21.3",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"recharts": "^3.8.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.1",
"@storybook/addon-a11y": "^10.2.16",
"@storybook/addon-docs": "^10.2.16",
"@storybook/addon-vitest": "^10.2.16",
"@storybook/react-vite": "^10.2.16",
"@tailwindcss/cli": "^4.2.1",
"@tailwindcss/vite": "^4.2.2",
"@types/node": "^20.19.37",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"playwright": "^1.58.2",
"storybook": "^10.2.16",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.1.7",
"vitest": "^4.0.18"
}
}