@peppone.choi/ui-kit 0.2.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,101 @@
1
+ {
2
+ "name": "@peppone.choi/ui-kit",
3
+ "version": "0.2.0",
4
+ "type": "module",
5
+ "description": "Peppone UI Kit — a React component library (framework-agnostic core + optional Next.js adapter) built on the Wanted Design System (Montage).",
6
+ "license": "MIT",
7
+ "sideEffects": [
8
+ "**/*.css"
9
+ ],
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "main": "./dist/index.cjs",
14
+ "module": "./dist/index.js",
15
+ "types": "./dist/index.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "types": "./dist/index.d.ts",
19
+ "import": "./dist/index.js",
20
+ "require": "./dist/index.cjs"
21
+ },
22
+ "./next": {
23
+ "types": "./dist/next/index.d.ts",
24
+ "import": "./dist/next/index.js",
25
+ "require": "./dist/next/index.cjs"
26
+ },
27
+ "./styles.css": "./dist/peppone-ui.css",
28
+ "./package.json": "./package.json"
29
+ },
30
+ "publishConfig": {
31
+ "access": "public"
32
+ },
33
+ "scripts": {
34
+ "dev": "next dev",
35
+ "build:app": "next build",
36
+ "start": "next start",
37
+ "build": "pnpm build:lib && pnpm build:css",
38
+ "build:lib": "tsup",
39
+ "build:css": "tailwindcss -i ./src/styles.css -o ./dist/peppone-ui.css",
40
+ "typecheck": "tsc --noEmit",
41
+ "lint": "eslint",
42
+ "test": "vitest run",
43
+ "test:watch": "vitest",
44
+ "storybook": "storybook dev -p 6006",
45
+ "build-storybook": "storybook build",
46
+ "prepublishOnly": "pnpm build"
47
+ },
48
+ "peerDependencies": {
49
+ "next": ">=15",
50
+ "react": ">=19",
51
+ "react-dom": ">=19"
52
+ },
53
+ "peerDependenciesMeta": {
54
+ "next": {
55
+ "optional": true
56
+ }
57
+ },
58
+ "dependencies": {
59
+ "@base-ui/react": "^1.4.1",
60
+ "@radix-ui/react-compose-refs": "^1.1.2",
61
+ "@radix-ui/react-slot": "^1.2.4",
62
+ "@radix-ui/react-use-callback-ref": "^1.1.1",
63
+ "class-variance-authority": "^0.7.1",
64
+ "clsx": "^2.1.1",
65
+ "lottie-web": "^5.13.0",
66
+ "lucide-react": "^1.11.0",
67
+ "object-path": "^0.11.8",
68
+ "tailwind-merge": "^3.5.0",
69
+ "tw-animate-css": "^1.4.0"
70
+ },
71
+ "devDependencies": {
72
+ "@changesets/cli": "^2.31.0",
73
+ "@storybook/react-vite": "^10.4.2",
74
+ "@tailwindcss/cli": "^4",
75
+ "@tailwindcss/postcss": "^4",
76
+ "@testing-library/jest-dom": "^6.9.1",
77
+ "@testing-library/react": "^16.3.2",
78
+ "@testing-library/user-event": "^14.6.1",
79
+ "@types/node": "^20",
80
+ "@types/object-path": "^0.11.4",
81
+ "@types/react": "^19",
82
+ "@types/react-dom": "^19",
83
+ "@vitejs/plugin-react": "^6.0.2",
84
+ "esbuild-plugin-preserve-directives": "^0.0.11",
85
+ "eslint": "^9",
86
+ "eslint-config-next": "16.2.4",
87
+ "jsdom": "^29.1.1",
88
+ "next": "16.2.4",
89
+ "react": "19.2.4",
90
+ "react-dom": "19.2.4",
91
+ "shadcn": "^4.5.0",
92
+ "storybook": "^10.4.2",
93
+ "tailwindcss": "^4",
94
+ "tsup": "^8",
95
+ "typescript": "^5",
96
+ "vite-tsconfig-paths": "^6.1.1",
97
+ "vitest": "^3",
98
+ "vitest-axe": "^0.1.0",
99
+ "vitest-canvas-mock": "^1.1.4"
100
+ }
101
+ }