-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "newspack-workspace",
"private": true,
"description": "Monorepo containing the Newspack suite of plugins, themes, and shared packages, plus the Docker-based local development environment.",
"repository": {
"type": "git",
"url": "https://github.com/Automattic/newspack-workspace.git"
},
"license": "GPL-2.0-or-later",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20.17"
},
"scripts": {
"build:packages": "pnpm --filter './packages/*' run --if-present build",
"build": "pnpm run build:packages && pnpm --filter './plugins/*' --filter './themes/*' run build",
"build:changed": "pnpm run build:packages && pnpm --filter '...[origin/main]' run build",
"watch": "node ./bin/watch-all.mjs",
"prepare": "husky || true; pnpm run build:packages",
"lint": "pnpm --filter './plugins/*' --filter './themes/*' run lint:js && composer phpcs",
"lint:changed": "pnpm --filter '...[origin/main]' run lint:js",
"test:js": "pnpm --filter './plugins/*' --filter './themes/*' run test",
"test:php": "composer test",
"format": "pnpm --filter './plugins/*' --filter './themes/*' run format:js",
"cm": "commit"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^19.8.1",
"@wordpress/a11y": "^4.48.0",
"@wordpress/api-fetch": "^7.48.0",
"@wordpress/base-styles": "^6.9.0",
"@wordpress/block-editor": "^15.21.0",
"@wordpress/blocks": "^15.21.0",
"@wordpress/components": "^30.6.0",
"@wordpress/compose": "^7.33.0",
"@wordpress/data": "^10.48.0",
"@wordpress/dataviews": "^10.2.0",
"@wordpress/date": "^5.48.0",
"@wordpress/dom-ready": "^4.48.0",
"@wordpress/edit-post": "^8.48.0",
"@wordpress/element": "^6.33.0",
"@wordpress/escape-html": "^3.48.0",
"@wordpress/hooks": "^4.48.0",
"@wordpress/html-entities": "^4.48.0",
"@wordpress/i18n": "^6.21.0",
"@wordpress/icons": "^11.0.0",
"@wordpress/keycodes": "^4.48.0",
"@wordpress/plugins": "^7.48.0",
"@wordpress/primitives": "^3.0.0",
"@wordpress/url": "^4.48.0",
"chokidar": "^3.6.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"multi-semantic-release": "^3.0.2",
"newspack-scripts": "workspace:*",
"postcss-scss": "^4.0.9",
"prettier": "npm:wp-prettier@^3.0.3",
"stylelint": "^16.26.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"pnpm": {
"overrides": {
"basic-ftp": "5.3.1",
"@typescript-eslint/parser": "8.61.0",
"prettier": "npm:wp-prettier@^3.0.3",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"patchedDependencies": {
"multi-semantic-release": "patches/multi-semantic-release.patch"
}
}
}