mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
3ea8930f37
Welcome to the bundled themes family! Twenty Twenty-One is a blank canvas for your ideas, making the block editor your best brush. Theme development to this point has taken place on GitHub. See: https://github.com/WordPress/twentytwentyone/. Props poena, melchoyce, luminuu, elmastudio, bethsoderberg, williampatton, aristath, jffng, kjellr, jeffikus, audrasjb, fabiankaegy, mukesh27, dingo_d, kellylawrence, acosmin, whyisjake, metodiew, ryelle, nielslange, littlebigthing, mahesh901122, zebulan, kishanjasani, lukecavanagh, scruffian, abhijitrakas, utz119, sudoshreyansh, kau-boy, justinahinon, joostdevalk, bduclos, hareesh-pillai, mager19, rolfsiebers, webmigrates, sresok, guidooffermans, francina, marybaum, hareshlive, navanathbhosale, afercia, richtabor, joyously, sarahricker, nrqsnchz, glauberglauber, sabernhardt, kraftbj, ItsJonQ, joen, CTMartin0, decrecementofeliz, bhautikvirani. See #51526. Built from https://develop.svn.wordpress.org/trunk@49216 git-svn-id: http://core.svn.wordpress.org/trunk@48978 1a063a9b-81f0-0310-95a4-ce76da25c4cd
69 lines
2.3 KiB
JSON
69 lines
2.3 KiB
JSON
{
|
|
"name": "twentytwentyone",
|
|
"version": "1.0.0",
|
|
"description": "Default WP Theme",
|
|
"author": "The WordPress Contributors",
|
|
"license": "GPL-2.0-or-later",
|
|
"keywords": [
|
|
"WordPress",
|
|
"Theme"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/wordpress/twentytwentyone"
|
|
},
|
|
"homepage": "https://github.com/wordpress/twentytwentyone",
|
|
"devDependencies": {
|
|
"@wordpress/browserslist-config": "^2.2.2",
|
|
"@wordpress/env": "^2.1.0",
|
|
"@wordpress/eslint-plugin": "^7.3.0",
|
|
"autoprefixer": "^9.5.1",
|
|
"chokidar-cli": "^2.1.0",
|
|
"eslint": "^7.11.0",
|
|
"minimist": "^1.2.2",
|
|
"node-sass": "^4.13.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"postcss-calc": "^7.0.5",
|
|
"postcss-cli": "^7.1.0",
|
|
"postcss-css-variables": "^0.17.0",
|
|
"postcss-custom-media": "^7.0.8",
|
|
"postcss-focus-within": "^3.0.0",
|
|
"postcss-nested": "^4.2.1",
|
|
"rtlcss": "^2.6.1",
|
|
"stylelint": "^13.7.2",
|
|
"stylelint-config-recommended-scss": "^4.2.0",
|
|
"stylelint-config-wordpress": "^17.0.0"
|
|
},
|
|
"rtlcssConfig": {
|
|
"options": {
|
|
"autoRename": false,
|
|
"autoRenameStrict": false,
|
|
"blacklist": {},
|
|
"clean": true,
|
|
"greedy": false,
|
|
"processUrls": false,
|
|
"stringMap": []
|
|
},
|
|
"plugins": [],
|
|
"map": false
|
|
},
|
|
"browserslist": [
|
|
"extends @wordpress/browserslist-config"
|
|
],
|
|
"scripts": {
|
|
"start": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
|
|
"build:style": "node-sass assets/sass/style.scss style.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
|
|
"build:style-editor": "node-sass assets/sass/style-editor.scss assets/css/style-editor.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
|
|
"build:rtl": "rtlcss style.css style-rtl.css",
|
|
"build:print": "node-sass assets/sass/07-utilities/print.scss assets/css/print.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
|
|
"build:ie": "postcss style.css -o assets/css/ie.css",
|
|
"build:ie-editor": "postcss assets/css/style-editor.css -o assets/css/ie-editor.css",
|
|
"build": "run-s \"build:*\"",
|
|
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
|
|
"lint:scss": "stylelint **/*.scss",
|
|
"lint:js": "eslint assets/js",
|
|
"lint-fix:scss": "stylelint **/*.scss --fix",
|
|
"lint-fix:js": "eslint assets/js --fix",
|
|
"wp-env": "wp-env"
|
|
}
|
|
}
|