-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.7 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@konstructio/ui",
"description": "A set of reusable and customizable React components built for konstruct.io",
"private": false,
"version": "0.0.5",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"author": {
"name": "Jesús Manuel Fuentes Trejo",
"email": "[email protected]",
"url": "https://futjesus.dev"
},
"keywords": [
"konstruct",
"colony",
"kubefirst",
"react",
"tailwind",
"vite",
"vitest",
"radix"
],
"repository": {
"type": "git",
"url": "git+https://github.com/konstructio/konstruct-ui.git"
},
"bugs": {
"url": "https://github.com/konstructio/konstruct-ui/issues"
},
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://konstructio.github.io/konstruct-ui",
"scripts": {
"build": "rimraf ./dist & tsc --p ./tsconfig.build.json && vite build && cp ./package.json ./dist/package.json",
"build:storybook": "storybook build -o storybook-static && cp -r public/* storybook-static",
"check:prettier": "prettier lib --check --config ./.prettierrc",
"check:types": "tsc -p tsconfig.json",
"ci": "npm run build && npm run check:prettier && vitest run",
"deps:update": "npx npm-check-updates --interactive --format group",
"dev": "vite",
"format:prettier": "prettier lib --write './**/*.{js,jsx,ts,tsx}' --config ./.prettierrc",
"lint": "eslint lib --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"test": "vitest run --coverage",
"test:watch": "vitest dev"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-slider": "^1.2.2",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-switch": "^1.1.2",
"@radix-ui/react-toast": "^1.2.4",
"@radix-ui/react-visually-hidden": "^1.1.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"js-cookie": "^3.0.5",
"react-feather": "^2.0.10",
"react-focus-lock": "^2.13.5",
"react-remove-scroll": "^2.6.2",
"react-router-dom": "^7.1.1",
"tailwind-merge": "^2.6.0"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-interactions": "^8.4.7",
"@storybook/addon-links": "^8.4.7",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/blocks": "^8.4.7",
"@storybook/react": "^8.4.7",
"@storybook/react-vite": "^8.4.7",
"@storybook/test": "^8.4.7",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/js-cookie": "^3.0.6",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.9.0",
"glob": "^11.0.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"storybook": "^8.4.7",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-lib-inject-css": "^2.2.0",
"vitest": "^2.1.8"
}
}