@vacano/ui 0.0.1

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,145 @@
1
+ {
2
+ "name": "@vacano/ui",
3
+ "version": "0.0.1",
4
+ "description": "Vacano React components library",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ },
20
+ "./icons": {
21
+ "import": {
22
+ "types": "./dist/icons.d.ts",
23
+ "default": "./dist/icons.js"
24
+ },
25
+ "require": {
26
+ "types": "./dist/icons.d.cts",
27
+ "default": "./dist/icons.cjs"
28
+ }
29
+ }
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "sideEffects": false,
35
+ "peerDependencies": {
36
+ "@emotion/react": "^11.0.0",
37
+ "react": "^19.0.0",
38
+ "react-dom": "^19.0.0"
39
+ },
40
+ "dependencies": {
41
+ "@emotion/styled": "^11.14.1",
42
+ "@floating-ui/react": "^0.27.16",
43
+ "@lordicon/react": "^1.11.0",
44
+ "@tanstack/react-virtual": "^3.13.13",
45
+ "clsx": "^2.1.1",
46
+ "lottie-web": "^5.13.0"
47
+ },
48
+ "devDependencies": {
49
+ "@chromatic-com/storybook": "^4.1.3",
50
+ "@emotion/react": "^11.14.0",
51
+ "@eslint/js": "^9.39.2",
52
+ "@ianvs/prettier-plugin-sort-imports": "^4.4.1",
53
+ "@storybook/addon-a11y": "^10.1.10",
54
+ "@storybook/addon-docs": "^10.1.10",
55
+ "@storybook/addon-onboarding": "^10.1.10",
56
+ "@storybook/addon-vitest": "^10.1.10",
57
+ "@storybook/react-vite": "^10.1.10",
58
+ "@testing-library/jest-dom": "^6.9.1",
59
+ "@testing-library/react": "^16.3.1",
60
+ "@testing-library/user-event": "^14.6.1",
61
+ "@types/node": "^22.10.2",
62
+ "@types/react": "^19.0.2",
63
+ "@types/react-dom": "^19.0.2",
64
+ "@vitejs/plugin-react": "^4.3.4",
65
+ "@vitest/browser": "^3.0.0",
66
+ "@vitest/coverage-v8": "^3.0.0",
67
+ "eslint": "^9.39.2",
68
+ "eslint-plugin-react": "^7.37.5",
69
+ "eslint-plugin-react-hooks": "^5.2.0",
70
+ "eslint-plugin-storybook": "^10.1.10",
71
+ "husky": "^9.1.7",
72
+ "jsdom": "^25.0.1",
73
+ "lint-staged": "^15.2.11",
74
+ "playwright": "^1.57.0",
75
+ "prettier": "^3.4.2",
76
+ "react": "^19.0.0",
77
+ "react-dom": "^19.0.0",
78
+ "storybook": "^10.1.10",
79
+ "typescript": "^5.7.2",
80
+ "typescript-eslint": "^8.50.1",
81
+ "vite": "^6.0.6",
82
+ "vite-plugin-dts": "^4.4.0",
83
+ "vitepress": "^1.5.0",
84
+ "vitest": "^3.0.0"
85
+ },
86
+ "engines": {
87
+ "node": ">=22.0.0",
88
+ "pnpm": ">=9.0.0"
89
+ },
90
+ "repository": {
91
+ "type": "git",
92
+ "url": "https://github.com/vacano-house/vacano-ui.git"
93
+ },
94
+ "keywords": [
95
+ "react",
96
+ "components",
97
+ "ui",
98
+ "design-system",
99
+ "atomic-design",
100
+ "emotion"
101
+ ],
102
+ "license": "MIT",
103
+ "prettier": {
104
+ "semi": false,
105
+ "singleQuote": true,
106
+ "tabWidth": 2,
107
+ "trailingComma": "all",
108
+ "printWidth": 100,
109
+ "plugins": [
110
+ "@ianvs/prettier-plugin-sort-imports"
111
+ ],
112
+ "importOrder": [
113
+ ".css",
114
+ "",
115
+ "^react$",
116
+ "^react-dom$",
117
+ "",
118
+ "<THIRD_PARTY_MODULES>",
119
+ "",
120
+ "^[./]"
121
+ ]
122
+ },
123
+ "lint-staged": {
124
+ "src/**/*.{ts,tsx}": [
125
+ "eslint --fix",
126
+ "prettier --write"
127
+ ]
128
+ },
129
+ "scripts": {
130
+ "build": "vite build",
131
+ "docs:dev": "vitepress dev docs",
132
+ "docs:build": "vitepress build docs",
133
+ "docs:preview": "vitepress preview docs",
134
+ "storybook": "storybook dev -p 6006",
135
+ "build-storybook": "storybook build",
136
+ "test": "vitest",
137
+ "test:run": "vitest run",
138
+ "test:coverage": "vitest run --coverage",
139
+ "lint": "eslint src",
140
+ "lint:fix": "eslint src --fix",
141
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
142
+ "format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
143
+ "typecheck": "tsc --noEmit"
144
+ }
145
+ }