2020-10-06 21:12:21 +00:00
|
|
|
{
|
|
|
|
"name": "themes",
|
2024-07-23 00:18:07 +00:00
|
|
|
"version": "1.0.542",
|
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",
|
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",
|
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-07-28 13:14:29 +00:00
|
|
|
"deploy:land": "node ./theme-utils.mjs land-diff",
|
2024-04-15 20:57:02 +00:00
|
|
|
"deploy:add-strict-typing": "node ./theme-utils.mjs add-strict-typing",
|
2024-01-09 22:06:57 +00:00
|
|
|
"pull:all": "node ./theme-utils.mjs pull-all-themes",
|
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-06-16 06:25:35 +00:00
|
|
|
"patterns:escape": "node ./theme-utils.mjs escape-patterns",
|
2022-02-15 11:28:42 +00:00
|
|
|
"prepare": "husky install"
|
2020-11-20 15:48:24 +00:00
|
|
|
},
|
2020-10-06 21:12:21 +00:00
|
|
|
"devDependencies": {
|
2023-05-15 08:25:06 +00:00
|
|
|
"@octokit/rest": "^19.0.8",
|
|
|
|
"@wordpress/prettier-config": "^2.16.0",
|
|
|
|
"@wordpress/scripts": "^26.4.0",
|
|
|
|
"@wordpress/stylelint-config": "^21.16.0",
|
2022-01-12 09:00:42 +00:00
|
|
|
"chokidar-cli": "^3.0.0",
|
2023-05-15 08:25:06 +00:00
|
|
|
"fs-extra": "^11.1.1",
|
|
|
|
"husky": "^8.0.3",
|
|
|
|
"inquirer": "^9.2.3",
|
|
|
|
"lint-staged": "^13.2.2",
|
2021-10-01 14:42:39 +00:00
|
|
|
"lodash": "^4.17.21",
|
2023-05-15 08:25:06 +00:00
|
|
|
"octokit": "^2.0.14",
|
|
|
|
"open": "^9.1.0",
|
2022-06-16 06:25:35 +00:00
|
|
|
"parse5-html-rewriting-stream": "^7.0.0",
|
2023-05-15 08:25:06 +00:00
|
|
|
"semver": "^7.5.1",
|
2022-08-09 17:41:14 +00:00
|
|
|
"string-progressbar": "^1.0.4",
|
2023-05-15 08:25:06 +00:00
|
|
|
"table": "^6.8.1"
|
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": {
|
2023-05-15 08:25:06 +00:00
|
|
|
"wp-prettier": "^2.8.5"
|
2022-01-14 14:28:12 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
2023-05-15 08:25:06 +00:00
|
|
|
"node": ">=18.0.0",
|
|
|
|
"npm": ">=9.0.0"
|
2022-07-15 05:45:17 +00:00
|
|
|
},
|
|
|
|
"workspaces": [
|
|
|
|
"*"
|
|
|
|
]
|
2020-10-06 21:12:21 +00:00
|
|
|
}
|