generated from alleyinteractive/create-wordpress-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 2.02 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": "wp-liveblog",
"license": "GPL-2.0-or-later",
"main": "wp-liveblog.php",
"engines": {
"node": "22",
"npm": "10"
},
"scripts": {
"build": "alley-build build",
"create-block": "npx @alleyinteractive/create-block@latest -n wp-liveblog",
"create-entry": "npx @alleyinteractive/create-entry@latest -n wp-liveblog -t wp-liveblog",
"create-slotfill": "npx @alleyinteractive/create-entry -s -n wp-liveblog -t wp-liveblog",
"check-types": "tsc --noEmit",
"eslint": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx .",
"eslint:fix": "eslint --ext .jsx --ext .js --ext .ts --ext .tsx . --fix",
"jest": "jest --passWithNoTests",
"jest:watch": "jest --watch",
"packages-update": "alley-build packages-update --dist-tag=wp-6.7",
"postinstall": "rm -rf node_modules/.cache/babel-loader && rm -rf node_modules/.cache/webpack",
"release": "npx @alleyinteractive/create-release@latest",
"start": "alley-build start",
"start:hot": "alley-build start --hot",
"stylelint": "stylelint \"**/*.scss\" --allow-empty-input",
"stylelint:fix": "stylelint --fix \"**/*.scss\"",
"test": "npm run check-types && npm run eslint && npm run stylelint && npm run jest"
},
"dependencies": {
"@alleyinteractive/block-editor-tools": "^0.11.0",
"@wordpress/block-editor": "^14.3.15",
"@wordpress/blocks": "^13.8.5",
"@wordpress/components": "^28.8.11",
"@wordpress/data": "^10.8.3",
"@wordpress/edit-post": "^8.8.18",
"@wordpress/i18n": "^5.8.2",
"@wordpress/plugins": "^7.8.11",
"react": "^18.3.1"
},
"devDependencies": {
"@alleyinteractive/build-tool": "^0.1.5",
"@alleyinteractive/eslint-config": "^0.1.6",
"@alleyinteractive/stylelint-config": "^0.0.2",
"@alleyinteractive/tsconfig": "^0.1.1",
"@babel/preset-env": "^7.26.0",
"@wordpress/babel-preset-default": "^8.8.2",
"ajv": "^8.17.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3",
"webpack-cli": "^6.0.1"
}
}