-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 887 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"private": true,
"type": "module",
"scripts": {
"dev:styles": "npx @tailwindcss/cli -i resources/css/index.css -o resources/dist/filament-library.css --watch",
"dev:scripts": "node bin/build.js --dev",
"build:styles": "npx @tailwindcss/cli -i resources/css/index.css -o resources/dist/filament-library.css --minify",
"build:scripts": "node bin/build.js",
"dev": "npm-run-all --parallel dev:*",
"build": "npm-run-all build:*"
},
"devDependencies": {
"@tailwindcss/cli": "^4.0",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/postcss": "^4.0",
"@tailwindcss/typography": "^0.5.15",
"esbuild": "^0.25.0",
"npm-run-all2": "^7.0",
"postcss": "^8.5.0",
"prettier": "^3.0",
"prettier-plugin-tailwindcss": "^0.6.0",
"tailwindcss": "^4.0"
}
}