-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.85 KB
/
package.json
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
{
"name": "@ediamin/css-class-manager",
"version": "1.1.0",
"description": "An advanced autocomplete additional css class control for your blocks.",
"author": "Edi Amin <[email protected]>",
"license": "GPL-3.0",
"keywords": [],
"homepage": "https://github.com/ediamin/css-class-manager#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ediamin/css-class-manager.git"
},
"bugs": {
"url": "https://github.com/ediamin/css-class-manager/issues"
},
"engines": {
"node": ">=20.10.0",
"npm": ">=10.2.3"
},
"devDependencies": {
"@types/wordpress__block-editor": "11.5.15",
"@wordpress/api-fetch": "7.11.0",
"@wordpress/base-styles": "5.11.0",
"@wordpress/components": "27.6.0",
"@wordpress/data": "9.28.0",
"@wordpress/env": "10.11.0",
"@wordpress/icons": "9.49.0",
"@wordpress/plugins": "7.11.0",
"@wordpress/scripts": "30.4.0",
"ajv": "8.17.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"nanoid": "3.3.7",
"react-select": "5.8.3",
"typescript": "5.6.3"
},
"scripts": {
"prepare": "husky install",
"env:start": "wp-env start --xdebug=debug",
"env:stop": "wp-env stop",
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:css": "wp-scripts lint-style assets/src",
"composer": "wp-env run --env-cwd='wp-content/plugins/css-class-manager' cli composer",
"dev": "wp-scripts start",
"build": "wp-scripts build",
"clean": "rimraf assets/dist",
"php:analyze": "wp-env run --env-cwd='wp-content/plugins/css-class-manager' cli composer analyze",
"make-pot": "wp-env run --env-cwd='wp-content/plugins/css-class-manager' cli wp i18n make-pot . languages/css-class-manager.pot --include=includes,assets/dist",
"zip": "wp-env run --env-cwd='wp-content/plugins/css-class-manager' cli php zip.php",
"make-dist-zip": "npm run clean && npm run make-pot && npm run build && npm run zip"
}
}