-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 972 Bytes
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
{
"name": "film-gallery",
"version": "1.1.0",
"description": "Film strip gallery block for WordPress",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"start": "wp-scripts start",
"packages-update": "wp-scripts packages-update",
"i18n": "npm run make-pot && npm run make-json",
"make-pot": "wp i18n make-pot . languages/film.pot --include=\"src\" --slug=\"film\"",
"make-json": "wp i18n make-json languages --pretty-print",
"check-translations": "node bin/check-translations.js",
"build-all": "npm run build && npm run i18n && npm run check-translations"
},
"devDependencies": {
"@wordpress/scripts": "^24.0.0"
},
"dependencies": {
"@wordpress/blocks": "^11.0.0",
"@wordpress/block-editor": "^9.0.0",
"@wordpress/components": "^19.0.0",
"@wordpress/element": "^4.0.0",
"@wordpress/i18n": "^4.0.0"
}
}