-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.21 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
{
"name": "wp-gif-player-play-and-pause",
"version": "0.1.2",
"description": "Insert GIFs that can be played and paused into your WordPress posts and pages using shortcodes and Gutenberg blocks.",
"main": "index.js",
"scripts": {
"minify": "terser assets/js/wp-gp-pp.js --compress --mangle --output assets/js/wp-gp-pp.min.js",
"start": "node_modules/.bin/wp-scripts start src/wp-gp-pp.block.js --output-path=admin/js",
"build": "node_modules/.bin/wp-scripts build src/wp-gp-pp.block.js --output-path=admin/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roelmagdaleno/wp-gif-player-play-and-pause.git"
},
"keywords": [
"gif",
"player"
],
"author": "Roel Magdaleno",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/roelmagdaleno/wp-gif-player-play-and-pause/issues"
},
"homepage": "https://github.com/roelmagdaleno/wp-gif-player-play-and-pause#readme",
"dependencies": {
"terser": "^4.6.11"
},
"devDependencies": {
"@wordpress/block-editor": "^3.8.0",
"@wordpress/components": "^9.3.0",
"@wordpress/element": "^2.12.0",
"@wordpress/scripts": "^7.2.0",
"@wordpress/server-side-render": "^1.9.0"
}
}