-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.8 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.8 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
{
"name": "telex",
"version": "1.6.2",
"description": "Install blocks and themes from your Telex projects.",
"private": true,
"license": "GPL-2.0-or-later",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "wp-scripts build",
"build:production": "NODE_ENV=production wp-scripts build && wp i18n make-pot . languages/telex.pot --domain=dispatch --exclude=vendor,node_modules,tests,bin && wp i18n make-json languages/ build/ --no-purge",
"start": "wp-scripts start",
"clean": "rm -rf build *.zip",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style",
"lint:docs:markdown": "markdownlint \"**/*.md\" --ignore node_modules --ignore vendor --ignore coverage --ignore .cursor",
"lint:docs:links": "markdown-link-check README.md CONTRIBUTING.md SECURITY.md CHANGELOG.md CODE_OF_CONDUCT.md docs/*.md",
"lint": "npm run lint:js && npm run lint:css",
"lint:php": "composer lint",
"test:php": "composer test",
"test:js": "wp-scripts test-unit-js --config jest.config.js",
"test:js:coverage": "wp-scripts test-unit-js --config jest.config.js --coverage",
"zip": "bash bin/build-zip.sh",
"packages-update": "wp-scripts packages-update"
},
"peerDependencies": {
"@wordpress/api-fetch": "*",
"@wordpress/components": "*",
"@wordpress/data": "*",
"@wordpress/element": "*",
"@wordpress/i18n": "*"
},
"devDependencies": {
"@wordpress/icons": "^12.0.0",
"@wordpress/scripts": "^31.7.0",
"markdown-link-check": "^3.14.2",
"markdownlint-cli": "^0.48.0"
},
"wp-scripts": {
"webpack-config": "webpack.config.js"
},
"overrides": {
"rimraf": "^5.0.10"
}
}