-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.95 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "create-wordpress-plugin",
"license": "GPL-2.0-or-later",
"main": "plugin.php",
"engines": {
"node": "20",
"npm": "10"
},
"browserslist": [
"defaults",
"not IE 11"
],
"scripts": {
"build": "alley-build build",
"create-block": "npx @alleyinteractive/create-block@latest -n create-wordpress-plugin",
"create-entry": "npx @alleyinteractive/create-entry@latest -n create-wordpress-plugin -t create-wordpress-plugin",
"create-slotfill": "npx @alleyinteractive/create-entry -s -n create-wordpress-plugin -t create-wordpress-plugin",
"precheck-types": "check-node-version --package",
"check-types": "tsc",
"lint:fix": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx . --fix",
"lint": "npm run check-types && eslint --ext .jsx --ext .js --ext .ts --ext .tsx .",
"packages-update": "alley-build packages-update --dist-tag=wp-6.4",
"postinstall": "rm -rf node_modules/.cache/babel-loader && rm -rf node_modules/.cache/webpack",
"prebuild": "check-node-version --package",
"prestart": "check-node-version --package",
"preinstall": "check-node-version --package",
"prelint:fix": "check-node-version --package",
"prelint": "check-node-version --package",
"prestylelint:fix": "check-node-version --package",
"prestylelint": "check-node-version --package",
"pretest:watch": "check-node-version --package",
"pretest": "check-node-version --package",
"prerelease": "check-node-version --package",
"release": "npx @alleyinteractive/create-release@latest",
"start": "alley-build start",
"start:hot": "alley-build start --hot",
"stylelint:fix": "stylelint --fix \"**/*.scss\"",
"stylelint": "stylelint \"**/*.scss\" --allow-empty-input",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@alleyinteractive/block-editor-tools": "^0.10.3",
"@wordpress/block-editor": "^13.0.7",
"@wordpress/blocks": "^13.0.3",
"@wordpress/components": "^28.0.3",
"@wordpress/data": "^10.0.2",
"@wordpress/edit-post": "^8.0.9",
"@wordpress/i18n": "^5.0.1",
"@wordpress/plugins": "^7.0.3",
"dompurify": "^3.1.5",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@alleyinteractive/build-tool": "^0.1.4",
"@alleyinteractive/create-entry": "^0.0.4",
"@alleyinteractive/eslint-config": "^0.1.6",
"@alleyinteractive/stylelint-config": "^0.0.2",
"@alleyinteractive/tsconfig": "^0.1.1",
"@babel/preset-env": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/wordpress__block-editor": "^11.5.11",
"@types/wordpress__blocks": "^12.5.13",
"@types/wordpress__components": "^23.0.11",
"@types/wordpress__edit-post": "^7.5.6",
"@wordpress/babel-preset-default": "^8.0.1",
"babel-jest": "^29.7.0",
"check-node-version": "^4.2.1",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"webpack-cli": "^5.1.4"
}
}