-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.11 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.11 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
101
102
{
"name": "@wedevs/plugin-ui",
"version": "2.0.0",
"description": "Scoped, themeable UI components for WordPress plugins - ShadCN style",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": [
"**/*.css"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./components/ui": {
"import": "./dist/components/ui/index.js",
"require": "./dist/components/ui/index.js",
"types": "./dist/components/ui/index.d.ts"
},
"./providers": {
"import": "./dist/providers/index.js",
"require": "./dist/providers/index.js",
"types": "./dist/providers/index.d.ts"
},
"./themes": {
"import": "./dist/themes/index.js",
"require": "./dist/themes/index.js",
"types": "./dist/themes/index.d.ts"
},
"./utils": {
"import": "./dist/utils/index.js",
"require": "./dist/utils/index.js",
"types": "./dist/utils/index.d.ts"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build:wp && npm run build:types",
"build:wp": "wp-scripts build --config webpack.config.js",
"build:types": "tsc --emitDeclarationOnly",
"start": "wp-scripts start --config webpack.config.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=17.0.0",
"react-dom": ">=17.0.0"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"tailwind-merge": "^2.6.1",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@wordpress/scripts": "^30.25.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"typescript": "^5.0.0",
"typescript-eslint": "^8.15.0"
},
"keywords": [
"wordpress",
"ui",
"components",
"react",
"shadcn",
"tailwind",
"wedevs",
"theming"
],
"author": "weDevs",
"license": "GPL-2.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/mrabbani/plugin-ui.git"
},
"overrides": {
"eslint": "$eslint"
}
}