-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
151 lines (151 loc) · 4.47 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "@konstructio/ui",
"description": "A set of reusable and customizable React components built for konstruct.io",
"private": false,
"version": "0.0.12-alpha.7",
"type": "module",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"author": {
"name": "Jesús Manuel Fuentes Trejo",
"email": "me@futjesus.dev",
"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 check:prettier && vitest run && npm run build",
"deps:update": "npx npm-check-updates --interactive --format group",
"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:ci": "vitest run",
"test:watch": "vitest dev"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-visually-hidden": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"js-cookie": "^3.0.5",
"lucide-react": "^0.477.0",
"react-feather": "^2.0.10",
"react-focus-lock": "^2.13.6",
"react-remove-scroll": "^2.6.3",
"tailwind-merge": "^3.0.2"
},
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0",
"react-router-dom": "^7",
"tailwindcss": "^3"
},
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
},
"tailwindcss": {
"optional": false
},
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
},
"@types/react-router-dom": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.1",
"@storybook/addon-docs": "^8.6.3",
"@storybook/addon-essentials": "^8.6.3",
"@storybook/addon-interactions": "^8.6.3",
"@storybook/addon-links": "^8.6.3",
"@storybook/addon-styling-webpack": "^1.0.1",
"@storybook/blocks": "^8.6.3",
"@storybook/react": "^8.6.3",
"@storybook/react-vite": "^8.6.3",
"@storybook/test": "^8.6.3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.16",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.0.7",
"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.1",
"husky": "^9.1.7",
"jest-axe": "^10.0.0",
"jsdom": "^26.0.0",
"lodash": "^4.17.21",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"storybook": "^8.6.3",
"tailwindcss": "^3.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"vite": "^6.2.0",
"vite-plugin-dts": "^4.5.3",
"vite-plugin-lib-inject-css": "^2.2.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.7"
}
}