-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.84 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.84 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
{
"name": "@helpwave/hightide",
"description": "helpwave's component and theming library",
"author": "helpwave <support@helpwave.de> (https://helpwave.de)",
"homepage": "https://helpwave.de",
"repository": {
"url": "git+https://github.com/helpwave/hightide.git"
},
"publishConfig": {
"access": "public"
},
"license": "MPL-2.0",
"version": "0.9.5",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"barrel": "dist/scripts/barrel.js"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./style/globals.css": "./dist/style/globals.css",
"./style/uncompiled/globals.css": "./dist/style/uncompiled/globals.css"
},
"scripts": {
"clean": "rm -rf dist && npm run barrel -- --clean",
"build-intl": "npx build-intl --force -i ./locales -o ./src/i18n/translations.ts -n hightideTranslation",
"build-css": "npx @tailwindcss/cli -i src/style/globals.css -o ./dist/style/globals.css",
"barrel": "node scripts/barrel.js",
"build": "npm run clean && npm run build-intl && npm run barrel && tsup && npm run build-css && cp -R src/style/ ./dist/style/uncompiled/ && cp -R scripts/ ./dist/scripts/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint .",
"init": "npm run build-intl",
"test": "jest"
},
"dependencies": {
"@helpwave/internationalization": "0.4.0",
"@radix-ui/react-slot": "1.2.4",
"@tailwindcss/cli": "4.1.18",
"@tanstack/react-table": "8.21.3",
"clsx": "2.1.1",
"lucide-react": "0.561.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"tailwindcss": "4.1.18"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.26.3",
"@babel/preset-typescript": "7.26.0",
"@faker-js/faker": "10.1.0",
"@helpwave/eslint-config": "0.0.11",
"@storybook/addon-docs": "10.2.10",
"@storybook/addon-links": "10.2.10",
"@storybook/nextjs": "10.2.10",
"@tailwindcss/postcss": "4.1.18",
"@types/jest": "30.0.0",
"@types/node": "20.17.10",
"@types/react": "19.2.3",
"@types/react-dom": "19.2.3",
"@types/tinycolor2": "1.4.6",
"@testing-library/react": "16.3.0",
"@vitest/mocker": "4.0.16",
"autoprefixer": "10.4.23",
"eslint": "9.31.0",
"eslint-plugin-storybook": "10.2.10",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"postcss": "8.5.6",
"storybook": "10.2.10",
"ts-jest": "29.4.6",
"tsup": "8.5.1",
"typescript": "5.7.2",
"webpack": "5.105.2"
},
"keywords": [
"react",
"tailwindcss",
"component-library",
"typscript"
],
"bugs": {
"url": "https://github.com/helpwave/hightide/issues"
},
"overrides": {
"elliptic": "^6.6.1"
}
}