@pipi-kit/ui 1.0.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,116 @@
1
+ {
2
+ "name": "@pipi-kit/ui",
3
+ "version": "1.0.0",
4
+ "description": "基于 React、shadcn、@radix-ui、lucide-react、Tailwind v4 开发的 UI 组件库",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "module": "./dist/index.mjs",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs"
14
+ },
15
+ "./package.json": "./package.json"
16
+ },
17
+ "files": [
18
+ "dist",
19
+ "README.md"
20
+ ],
21
+ "sideEffects": false,
22
+ "scripts": {
23
+ "build": "tsup",
24
+ "dev": "tsup --watch",
25
+ "preview": "vite",
26
+ "typecheck": "tsc --noEmit",
27
+ "lint": "eslint src",
28
+ "prepublishOnly": "npm run build"
29
+ },
30
+ "peerDependencies": {
31
+ "@radix-ui/react-slot": "^1.1.0",
32
+ "next-themes": "^0.4.0",
33
+ "react": ">=18",
34
+ "react-dom": ">=18",
35
+ "tailwindcss": ">=4.0.0"
36
+ },
37
+ "dependencies": {
38
+ "@radix-ui/react-accordion": "^1.2.2",
39
+ "@radix-ui/react-alert-dialog": "^1.1.4",
40
+ "@radix-ui/react-aspect-ratio": "^1.1.1",
41
+ "@radix-ui/react-avatar": "^1.1.2",
42
+ "@radix-ui/react-checkbox": "^1.1.3",
43
+ "@radix-ui/react-collapsible": "^1.1.2",
44
+ "@radix-ui/react-context-menu": "^2.2.4",
45
+ "@radix-ui/react-dialog": "^1.1.4",
46
+ "@radix-ui/react-dropdown-menu": "^2.1.4",
47
+ "@radix-ui/react-hover-card": "^1.1.4",
48
+ "@radix-ui/react-label": "^2.1.1",
49
+ "@radix-ui/react-menubar": "^1.1.4",
50
+ "@radix-ui/react-navigation-menu": "^1.2.3",
51
+ "@radix-ui/react-popover": "^1.1.4",
52
+ "@radix-ui/react-progress": "^1.1.1",
53
+ "@radix-ui/react-radio-group": "^1.2.2",
54
+ "@radix-ui/react-scroll-area": "^1.2.2",
55
+ "@radix-ui/react-select": "^2.1.4",
56
+ "@radix-ui/react-separator": "^1.1.1",
57
+ "@radix-ui/react-slider": "^1.2.2",
58
+ "@radix-ui/react-switch": "^1.1.2",
59
+ "@radix-ui/react-tabs": "^1.1.2",
60
+ "@radix-ui/react-toast": "^1.2.4",
61
+ "@radix-ui/react-toggle": "^1.1.1",
62
+ "@radix-ui/react-toggle-group": "^1.1.1",
63
+ "@radix-ui/react-tooltip": "^1.1.6",
64
+ "class-variance-authority": "^0.7.1",
65
+ "clsx": "^2.1.1",
66
+ "cmdk": "1.0.0",
67
+ "date-fns": "^2.30.0",
68
+ "embla-carousel-react": "^8.5.1",
69
+ "framer-motion": "^11.18.2",
70
+ "input-otp": "^1.4.2",
71
+ "lucide-react": "^0.469.0",
72
+ "motion": "^12.27.1",
73
+ "next-intl": "^3.26.5",
74
+ "react-day-picker": "8.10.1",
75
+ "react-dropzone": "^14.3.8",
76
+ "react-hook-form": "^7.53.2",
77
+ "react-markdown": "^10.1.0",
78
+ "react-resizable-panels": "^2.1.7",
79
+ "recharts": "^2.15.4",
80
+ "remark-gfm": "^4.0.1",
81
+ "shiki": "^1.29.2",
82
+ "sonner": "^1.7.1",
83
+ "tailwind-merge": "^2.5.5",
84
+ "vaul": "^1.1.2"
85
+ },
86
+ "devDependencies": {
87
+ "@tailwindcss/postcss": "^4.1.18",
88
+ "@types/node": "^25.0.9",
89
+ "@types/react": "^18.3.23",
90
+ "@types/react-dom": "^18.3.7",
91
+ "@vitejs/plugin-react": "^4.7.0",
92
+ "autoprefixer": "^10.4.23",
93
+ "next-themes": "^0.4.6",
94
+ "react": "^18.3.1",
95
+ "react-dom": "^18.3.1",
96
+ "tailwindcss": "^4.0.0",
97
+ "tsup": "^8.0.1",
98
+ "typescript": "^5.8.3",
99
+ "vite": "^4.5.14"
100
+ },
101
+ "keywords": [
102
+ "react",
103
+ "ui",
104
+ "components",
105
+ "shadcn",
106
+ "radix-ui",
107
+ "tailwindcss",
108
+ "typescript"
109
+ ],
110
+ "author": "pipi-kit",
111
+ "license": "MIT",
112
+ "private": false,
113
+ "publishConfig": {
114
+ "access": "public"
115
+ }
116
+ }