@onnechat/ui 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,129 @@
1
+ {
2
+ "name": "@onnechat/ui",
3
+ "version": "0.1.0",
4
+ "description": "Biblioteca de componentes React para Onne",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./styles": "./dist/styles.css"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup",
21
+ "watch": "tsup --watch",
22
+ "dev": "storybook dev -p 6006",
23
+ "build-storybook": "storybook build",
24
+ "lint": "eslint src --ext .ts,.tsx",
25
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
26
+ "format": "prettier --write \"src/**/*.{ts,tsx,json,css,md}\"",
27
+ "type-check": "tsc --noEmit",
28
+ "test": "vitest",
29
+ "test-storybook": "vitest --project=storybook",
30
+ "test:coverage": "vitest --coverage",
31
+ "prepublishOnly": "bun run build",
32
+ "chromatic": "bunx chromatic --project-token=your-project-token",
33
+ "release": "npm publish"
34
+ },
35
+ "keywords": [
36
+ "react",
37
+ "components",
38
+ "ui",
39
+ "design-system",
40
+ "typescript",
41
+ "storybook"
42
+ ],
43
+ "author": "Shiddo Team",
44
+ "license": "MIT",
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "git+https://github.com/onnechat/ui.git"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/onnechat/ui/issues"
51
+ },
52
+ "homepage": "https://github.com/onnechat/ui#readme",
53
+ "peerDependencies": {
54
+ "react": ">=16.8.0",
55
+ "react-dom": ">=16.8.0"
56
+ },
57
+ "devDependencies": {
58
+ "@chromatic-com/storybook": "^5.2.1",
59
+ "@playwright/test": "^1.60.0",
60
+ "@storybook/addon-a11y": "^10.4.6",
61
+ "@storybook/addon-docs": "^10.4.6",
62
+ "@storybook/addon-links": "^10.4.6",
63
+ "@storybook/addon-themes": "^10.4.6",
64
+ "@storybook/addon-vitest": "^10.4.6",
65
+ "@storybook/react-vite": "^10.4.6",
66
+ "@storybook/test-runner": "^0.24.4",
67
+ "@storybook/testing-library": "^0.2.2",
68
+ "@tailwindcss/postcss": "^4.1.12",
69
+ "@types/minimatch": "^6.0.0",
70
+ "@types/react": "^18.2.45",
71
+ "@types/react-dom": "^18.2.18",
72
+ "@typescript-eslint/eslint-plugin": "^6.15.0",
73
+ "@typescript-eslint/parser": "^6.15.0",
74
+ "@vitest/browser-playwright": "^4.1.8",
75
+ "@vitest/coverage-v8": "^4.1.8",
76
+ "autoprefixer": "^10.4.21",
77
+ "eslint": "^8.56.0",
78
+ "eslint-plugin-react": "^7.33.2",
79
+ "eslint-plugin-react-hooks": "^4.6.0",
80
+ "eslint-plugin-storybook": "^10.4.6",
81
+ "postcss": "^8.5.6",
82
+ "prettier": "^3.1.1",
83
+ "react": "^18.2.0",
84
+ "react-dom": "^18.2.0",
85
+ "storybook": "^10.4.6",
86
+ "tailwindcss": "^4.1.12",
87
+ "tailwindcss-animate": "^1.0.7",
88
+ "tsup": "^8.0.1",
89
+ "typescript": "^5",
90
+ "vitest": "^4.1.8"
91
+ },
92
+ "dependencies": {
93
+ "@base-ui/react": "^1.4.0",
94
+ "@hookform/resolvers": "^5.4.0",
95
+ "@number-flow/react": "^0.6.0",
96
+ "@tanstack/react-query": "^5.101.0",
97
+ "@tanstack/react-table": "^8.21.3",
98
+ "@types/js-cookie": "^3.0.6",
99
+ "canvas-confetti": "^1.9.4",
100
+ "class-variance-authority": "^0.7.1",
101
+ "clsx": "^2.0.0",
102
+ "cmdk": "^1.1.1",
103
+ "frimousse": "^0.3.0",
104
+ "js-cookie": "^3.0.5",
105
+ "libphonenumber-js": "^1.13.6",
106
+ "media-chrome": "^4.19.0",
107
+ "motion": "^12.23.12",
108
+ "next-themes": "^0.4.6",
109
+ "nucleo-flags": "^1.1.3",
110
+ "nucleo-ui-fill-18": "^1.4.0",
111
+ "nucleo-ui-fill-duo-18": "^1.4.0",
112
+ "react-day-picker": "^9.14.0",
113
+ "react-fast-marquee": "^1.6.5",
114
+ "react-hook-form": "^7.78.0",
115
+ "react-remove-scroll": "^2.7.2",
116
+ "recharts": "^3.8.1",
117
+ "sonner": "^2.0.7",
118
+ "tailwind-merge": "^3.3.1",
119
+ "torph": "^0.0.9",
120
+ "vaul": "^1.1.2",
121
+ "vite": "^8.0.16",
122
+ "web-haptics": "^0.0.6",
123
+ "zod": "^4.4.3",
124
+ "zustand": "^5.0.12"
125
+ },
126
+ "publishConfig": {
127
+ "access": "public"
128
+ }
129
+ }