PluginProbe
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO / 1.4.16
Discount Rules for WooCommerce – Disco | Dynamic Pricing, Conditions, Bulk, Bundle, BOGO v1.4.16
1.4.16 1.4.15 1.4.14 1.4.13 1.4.12 1.4.11 1.4.10 1.4.9 1.4.8 1.4.7 1.4.6 1.4.5 1.4.4 1.4.3 1.4.2 1.4.1 1.4.0 1.3.54 1.3.53 1.3.52 1.3.51 1.3.50 1.3.49 1.3.48 1.3.47 All 179 releases
← All changes | package.json +18 -9 1.3.521.4.16 View file →
@@ -46,10 +46,13 @@
46 46 "postinstall": "npm run build",
47 47 "publish": "npm run build && composer install --no-dev && composer dumpautoload -o && npm run plugin-zip",
48 48 "push": "npm run test && npm run lint:js && npm run lint:css",
49 49 "wp-env": "wp-env start",
50 - "tailwind": "npx tailwindcss -i assets/src/styles/tailwind.css -o backend/views/asset/tailwind.css --watch",
51 - "common-tailwind": "npx tailwindcss -i assets/src/styles/common-tailwind.css -o backend/views/asset/common-tailwind.css --watch",
50 + "tailwind": "npx @tailwindcss/cli -i assets/src/styles/tailwind.css -o backend/views/asset/tailwind.css --watch",
51 + "common-tailwind": "npx @tailwindcss/cli -i assets/src/styles/common-tailwind.css -o backend/views/asset/common-tailwind.css --watch",
52 + "tailwind:build": "npx @tailwindcss/cli -i assets/src/styles/tailwind.css -o backend/views/asset/tailwind.css",
53 + "common-tailwind:build": "npx @tailwindcss/cli -i assets/src/styles/common-tailwind.css -o backend/views/asset/common-tailwind.css",
54 + "build:css": "npm run tailwind:build && npm run common-tailwind:build",
52 55 "test": "jest --config jest.config.js",
53 56 "cy:open": "dotenv -e .env cypress open",
54 57 "cy:run": "dotenv -e .env cypress run",
55 58 "clean": "gulp clean",
@@ -73,14 +76,15 @@
73 76 "eslint-plugin-react-refresh": "^0.4.9",
74 77 "gulp": "^5.0.0",
75 78 "gulp-clean": "^0.4.0",
76 79 "prettier": "^3.3.3",
77 - "tailwindcss": "^3.4.10",
80 + "tailwindcss": "^4.3.3",
81 + "tw-animate-css": "^1.4.0",
78 82 "whatwg-fetch": "^3.6.20"
79 83 },
80 84 "engines": {
81 - "node": ">=14.0.0",
82 - "npm": ">=6.9.0"
85 + "node": ">=20.0.0",
86 + "npm": ">=9.0.0"
83 87 },
84 88 "browserslist": [
85 89 "extends @wordpress/browserslist-config"
86 90 ],
@@ -94,23 +98,28 @@
94 98 }
95 99 },
96 100 "prettier": "@wordpress/prettier-config",
97 101 "dependencies": {
102 + "@base-ui/react": "^1.4.1",
98 103 "@headlessui/react": "^2.2.10",
99 104 "@heroicons/react": "^2.1.5",
105 + "@redux-devtools/extension": "^4.0.0",
100 106 "@reduxjs/toolkit": "^2.2.7",
101 107 "@wordpress/i18n": "^5.5.0",
108 + "class-variance-authority": "^0.7.1",
102 109 "clsx": "^2.1.1",
110 + "date-fns": "^4.1.0",
103 111 "emoji-picker-react": "^4.12.0",
104 - "moment": "^2.30.1",
112 + "lucide-react": "^1.11.0",
105 113 "react": "^18.3.1",
106 114 "react-best-gradient-color-picker": "^3.0.11",
107 - "react-color": "^2.19.3",
115 + "react-day-picker": "^9.14.0",
108 116 "react-dom": "^18.3.1",
109 117 "react-redux": "^9.1.2",
110 118 "react-router": "^7.14.1",
111 119 "react-toastify": "^10.0.5",
112 - "tailwind-merge": "^2.5.3",
113 - "tinycolor2": "^1.6.0",
120 + "recharts": "^3.8.0",
121 + "shadcn": "^4.5.0",
122 + "tailwind-merge": "^3.6.0",
114 123 "uuid": "^10.0.0"
115 124 }
116 125 }