* enhance(view): Add light default styling for Tailwind * chore(view): Clean up unnecessary selectors and spacing * feat(acorn): Update Acorn for Laravel 8.x * chore(acorn): Create default `bootstrap/` project directory for Laravel 8.x * refactor(acorn): Split the Acorn bootloader between `functions.php` and `bootstrap/app.php` to coincide with Laravel * refactor(assets): Lighten the out of the box CSS boilerplate * refactor(assets): Rename `dist/` to `public/` to coincide with Laravel * refactor(assets): Flatten the `assets/` directory into `resources/` to coincide with Laravel * refactor(assets): Rename `scripts/` to `js/` to coincide with Laravel * refactor(assets): Rename `styles/` to `css/` to coincide with Laravel * feat(deps): Update to Laravel Mix ^6.0 * chore(deps): Change Mix-related package.json `scripts` to the new `mix` binary * chore(deps): Remove PurgeCSS in favor of Tailwind's built in purge * chore(deps): Remove deprecated/unnecessary/unused dependencies * chore(deps): Bump minimum PHP version to 7.3 to coincide with Laravel 8.x
69 lines
1.7 KiB
JSON
69 lines
1.7 KiB
JSON
{
|
|
"name": "roots/sage",
|
|
"type": "wordpress-theme",
|
|
"license": "MIT",
|
|
"description": "WordPress starter theme with a modern development workflow",
|
|
"homepage": "https://roots.io/sage/",
|
|
"authors": [
|
|
{
|
|
"name": "Ben Word",
|
|
"email": "ben@benword.com",
|
|
"homepage": "https://github.com/retlehs"
|
|
},
|
|
{
|
|
"name": "Scott Walkinshaw",
|
|
"email": "scott.walkinshaw@gmail.com",
|
|
"homepage": "https://github.com/swalkinshaw"
|
|
},
|
|
{
|
|
"name": "QWp6t",
|
|
"email": "hi@qwp6t.me",
|
|
"homepage": "https://github.com/qwp6t"
|
|
},
|
|
{
|
|
"name": "Brandon Nifong",
|
|
"email": "brandon@tendency.me",
|
|
"homepage": "https://github.com/log1x"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"wordpress"
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/roots/sage/issues",
|
|
"forum": "https://discourse.roots.io/"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "app/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^7.3|^8.0",
|
|
"roots/acorn": "dev-laravel-85"
|
|
},
|
|
"require-dev": {
|
|
"filp/whoops": "^2.9",
|
|
"squizlabs/php_codesniffer": "^3.5"
|
|
},
|
|
"suggest": {
|
|
"log1x/sage-directives": "A collection of useful Blade directives for WordPress and Sage (^1.0).",
|
|
"log1x/sage-svg": "Provides a useful SVG directive for properly inlining SVG's within your Blade views (^1.0)."
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"preferred-install": "dist",
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"scripts": {
|
|
"lint": [
|
|
"phpcs --ignore=index.php,bootstrap,public,resources,storage,vendor,node_modules --extensions=php --standard=PSR12 ."
|
|
],
|
|
"post-autoload-dump": [
|
|
"Roots\\Acorn\\ComposerScripts::postAutoloadDump"
|
|
]
|
|
}
|
|
}
|