suwa-ui 0.0.0-development

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,106 @@
1
+ {
2
+ "name": "suwa-ui",
3
+ "type": "module",
4
+ "author": "PHNTMbandit",
5
+ "description": "",
6
+ "license": "MIT",
7
+ "version": "0.0.0-development",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/PHNTMbandit/suwa-ui.git"
11
+ },
12
+ "publishConfig": {
13
+ "access": "public"
14
+ },
15
+ "main": "./dist/suwa-ui.es.js",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ ".": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/suwa-ui.es.js"
21
+ },
22
+ "./styles": "./dist/styles.css"
23
+ },
24
+ "files": [
25
+ "dist",
26
+ "README.md"
27
+ ],
28
+ "sideEffects": [
29
+ "**/*.css"
30
+ ],
31
+ "dependencies": {
32
+ "@base-ui/react": "^1.0.0",
33
+ "class-variance-authority": "^0.7.1",
34
+ "clsx": "^2.1.1",
35
+ "tailwind-merge": "^3.4.0",
36
+ "tailwindcss": "^4.1.18",
37
+ "tw-animate-css": "^1.4.0"
38
+ },
39
+ "devDependencies": {
40
+ "@biomejs/biome": "2.3.11",
41
+ "@chromatic-com/storybook": "^4.1.3",
42
+ "@commitlint/cli": "^20.3.0",
43
+ "@commitlint/config-conventional": "^20.3.0",
44
+ "@phosphor-icons/react": "^2.1.10",
45
+ "@semantic-release/changelog": "^6.0.3",
46
+ "@semantic-release/commit-analyzer": "^13.0.1",
47
+ "@semantic-release/git": "^10.0.1",
48
+ "@semantic-release/github": "^12.0.2",
49
+ "@semantic-release/npm": "^13.1.3",
50
+ "@semantic-release/release-notes-generator": "^14.1.0",
51
+ "@storybook/addon-a11y": "^10.1.11",
52
+ "@storybook/addon-docs": "^10.1.11",
53
+ "@storybook/addon-onboarding": "^10.1.11",
54
+ "@storybook/addon-themes": "^10.1.11",
55
+ "@storybook/addon-vitest": "^10.1.11",
56
+ "@storybook/react-vite": "^10.1.11",
57
+ "@tailwindcss/cli": "^4.1.18",
58
+ "@tailwindcss/vite": "^4.1.18",
59
+ "@tanstack/react-form": "^1.27.7",
60
+ "@tanstack/react-ranger": "^0.0.5",
61
+ "@testing-library/dom": "^10.4.1",
62
+ "@testing-library/react": "^16.3.1",
63
+ "@types/node": "^25.0.3",
64
+ "@types/react": "^19.2.7",
65
+ "@types/react-dom": "^19.2.3",
66
+ "@vitejs/plugin-react": "^5.1.2",
67
+ "@vitest/browser-playwright": "^4.0.16",
68
+ "@vitest/coverage-v8": "^4.0.16",
69
+ "cz-conventional-changelog": "^3.3.0",
70
+ "globals": "^17.0.0",
71
+ "jsdom": "^27.4.0",
72
+ "lefthook": "^2.0.13",
73
+ "playwright": "^1.57.0",
74
+ "react": "^19.2.3",
75
+ "react-dom": "^19.2.3",
76
+ "react-test-renderer": "^19.2.3",
77
+ "semantic-release": "^25.0.2",
78
+ "standard-version": "^9.5.0",
79
+ "storybook": "^10.1.11",
80
+ "typescript": "~5.9.3",
81
+ "vite": "npm:rolldown-vite@7.3.0",
82
+ "vite-plugin-dts": "^4.5.4",
83
+ "vitest": "^4.0.16"
84
+ },
85
+ "peerDependencies": {
86
+ "react": "^19.0.0",
87
+ "react-dom": "^19.0.0",
88
+ "use-sync-external-store": "^1.2.0"
89
+ },
90
+ "config": {
91
+ "commitizen": {
92
+ "path": "./node_modules/cz-conventional-changelog"
93
+ }
94
+ },
95
+ "scripts": {
96
+ "dev": "vite",
97
+ "build": "tsc -b && vite build && pnpm run build:css",
98
+ "build:css": "node -e \"require('fs').copyFileSync('src/styles.css', 'dist/styles.css')\"",
99
+ "lint": "biome check --write",
100
+ "preview": "vite preview",
101
+ "test": "vitest run",
102
+ "storybook": "storybook dev -p 6006",
103
+ "build-storybook": "storybook build",
104
+ "cz": "cz"
105
+ }
106
+ }