2020-10-06 21:12:21 +00:00
|
|
|
{
|
|
|
|
"name": "themes",
|
2022-06-14 19:54:00 +00:00
|
|
|
"version": "1.0.158",
|
2020-10-06 21:20:07 +00:00
|
|
|
"description": "Automattic public themes",
|
2020-10-06 21:12:21 +00:00
|
|
|
"author": "automattic",
|
|
|
|
"license": "GPL-2.0",
|
2021-03-31 15:47:01 +00:00
|
|
|
"prettier": "@wordpress/prettier-config",
|
2020-11-20 15:48:24 +00:00
|
|
|
"scripts": {
|
2022-02-02 09:53:54 +00:00
|
|
|
"sandbox:clean": "node ./theme-utils.mjs clean-sandbox",
|
|
|
|
"sandbox:clean-premium": "node ./theme-utils.mjs clean-premium-sandbox",
|
|
|
|
"sandbox:clean-all": "node ./theme-utils.mjs clean-all-sandbox",
|
2021-08-30 18:09:55 +00:00
|
|
|
"local:clean": "git reset --hard HEAD; git clean -fd",
|
|
|
|
"batch:install": "./theme-batch-utils.sh install-dependencies",
|
2022-01-14 15:52:32 +00:00
|
|
|
"batch:build": "./theme-batch-utils.sh build-all",
|
2021-08-30 18:09:55 +00:00
|
|
|
"batch:audit:fix": "./theme-batch-utils.sh audit-dependencies",
|
2022-01-14 14:28:12 +00:00
|
|
|
"batch:update": "./theme-batch-utils.sh update-dependencies",
|
2021-10-01 14:42:39 +00:00
|
|
|
"deploy:version-bump": "node ./theme-utils.mjs version-bump-themes",
|
|
|
|
"deploy:push:all": "node ./theme-utils.mjs push-to-sandbox",
|
|
|
|
"deploy:push:changes": "node ./theme-utils.mjs push-changes-to-sandbox",
|
2022-04-28 16:23:19 +00:00
|
|
|
"deploy:push:theme": "node ./theme-utils.mjs push-theme-to-sandbox",
|
2021-12-16 10:28:46 +00:00
|
|
|
"deploy:push:premium": "node ./theme-utils.mjs push-premium-to-sandbox",
|
2022-02-02 09:53:54 +00:00
|
|
|
"deploy": "node ./theme-utils.mjs push-button-deploy",
|
2022-02-21 20:52:07 +00:00
|
|
|
"deploy:core:sync": "node ./theme-utils.mjs deploy-sync-core-theme",
|
2021-10-29 07:38:36 +00:00
|
|
|
"deploy:preview": "node ./theme-utils.mjs deploy-preview",
|
2022-02-02 09:53:54 +00:00
|
|
|
"deploy:theme": "node ./theme-utils.mjs deploy-theme",
|
|
|
|
"deploy:zip": "node ./theme-utils.mjs build-com-zip",
|
2022-02-21 20:52:07 +00:00
|
|
|
"core:pull": "node ./theme-utils.mjs pull-core-themes",
|
|
|
|
"core:push": "node ./theme-utils.mjs push-core-themes",
|
|
|
|
"core:sync": "node ./theme-utils.mjs sync-core-theme",
|
2022-02-15 11:28:42 +00:00
|
|
|
"build:variations": "node ./variations/build-variations.mjs",
|
|
|
|
"prepare": "husky install"
|
2020-11-20 15:48:24 +00:00
|
|
|
},
|
2020-10-06 21:12:21 +00:00
|
|
|
"devDependencies": {
|
2022-01-12 09:00:42 +00:00
|
|
|
"@octokit/rest": "^18.12.0",
|
2022-02-16 15:01:50 +00:00
|
|
|
"@wordpress/prettier-config": "^1.1.2",
|
|
|
|
"@wordpress/scripts": "^21.0.2",
|
|
|
|
"@wordpress/stylelint-config": "^20.0.1",
|
2022-01-12 09:00:42 +00:00
|
|
|
"chokidar-cli": "^3.0.0",
|
2021-12-13 16:53:44 +00:00
|
|
|
"fs-extra": "^10.0.0",
|
2022-01-12 09:00:42 +00:00
|
|
|
"husky": "^7.0.4",
|
|
|
|
"inquirer": "^8.2.0",
|
2022-02-16 15:01:50 +00:00
|
|
|
"lint-staged": "^12.3.4",
|
2021-10-01 14:42:39 +00:00
|
|
|
"lodash": "^4.17.21",
|
2022-01-12 09:00:42 +00:00
|
|
|
"open": "^8.4.0"
|
2020-10-06 21:12:21 +00:00
|
|
|
},
|
2022-02-16 15:01:50 +00:00
|
|
|
"stylelint": {
|
|
|
|
"extends": "@wordpress/stylelint-config",
|
|
|
|
"defaultSeverity": "warning"
|
|
|
|
},
|
2021-04-02 08:32:27 +00:00
|
|
|
"lint-staged": {
|
2022-02-15 11:28:42 +00:00
|
|
|
"*.scss": [
|
2022-02-16 15:01:50 +00:00
|
|
|
"wp-scripts lint-style --fix --custom-syntax postcss-scss"
|
2021-04-02 08:32:27 +00:00
|
|
|
]
|
|
|
|
},
|
2021-03-31 15:47:01 +00:00
|
|
|
"dependencies": {
|
|
|
|
"wp-prettier": "^2.0.5"
|
2022-01-14 14:28:12 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16"
|
2020-10-06 21:12:21 +00:00
|
|
|
}
|
|
|
|
}
|