-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.66 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@shilong/react",
"version": "0.0.7",
"packageManager": "pnpm@10.6.3",
"description": "A simple react ui component",
"keywords": [
"ui",
"react",
"tailwindcss",
"shadcn"
],
"type": "module",
"license": "MIT",
"homepage": "https://github.com/Onlylonger/react",
"bugs": {
"url": "https://github.com/Onlylonger/react/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Onlylonger/react.git"
},
"author": "Barry <onlylonger@outlook.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/global.css",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"browserslist": [
"> 0.5%",
"not dead"
],
"scripts": {
"build": "vite build",
"dev": "vite build -w",
"pg": "vite --config playground/vite.config.ts",
"test": "vitest",
"typecheck": "tsc --noEmit",
"release": "pnpm build && bumpp && npm publish",
"prepublishOnly": "pnpm run build",
"docs:dev": "pnpm build && rspress dev",
"docs:build": "pnpm build && rspress build",
"docs:preview": "rspress preview"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@rspress/plugin-playground": "^1.45.1",
"@rspress/plugin-preview": "^1.45.1",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.15.17",
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.4",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/css-utils": "^0.1.6",
"@vanilla-extract/vite-plugin": "^5.1.1",
"@vitejs/plugin-react": "^4.4.1",
"autoprefixer": "^10.4.21",
"bumpp": "^10.1.0",
"happy-dom": "^17.4.6",
"postcss": "^8.5.6",
"postcss-preset-env": "^10.2.4",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"rspress": "^1.45.1",
"tailwindcss": "^4.1.11",
"tw-animate-css": "^1.3.6",
"typescript": "^5.8.3",
"vite": "^7.1.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.1.3"
},
"dependencies": {
"@floating-ui/react": "^0.27.15",
"@radix-ui/react-checkbox": "^1.3.2",
"@shilong/utils": "^0.0.9",
"@tanstack/react-table": "^8.21.3",
"lucide-react": "^0.539.0",
"react-hook-form": "^7.62.0",
"sonner": "^2.0.7",
"uuid": "^11.1.0"
}
}