-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
69 lines (69 loc) · 2.1 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
{
"name": "instant-images",
"version": "6.1.1",
"description": "One click image uploads from Unsplash, Openverse, Pixabay and Pexels directly to your WordPress media library.",
"author": "connekthq.com <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"plugin"
],
"homepage": "https://wordpress.org/plugins/instant-images/",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dcooney/instant-images"
},
"bugs": {
"url": "https://github.com/dcooney/instant-images/issues"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"scripts": {
"watch": "npm run dev",
"dev": "wp-scripts start --config webpack/prod.config.js",
"dev:proxy": "wp-scripts start --config webpack/proxy.config.js",
"build": "npm run build:pot && wp-scripts build --config webpack/prod.config.js",
"build:pot": "composer run pot",
"format": "wp-scripts format && composer run format",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style --custom-syntax postcss-scss",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:php": "composer run lint",
"postinstall": "composer install"
},
"dependencies": {
"@wordpress/blocks": "^14.0.0",
"@wordpress/data": "^10.11.0",
"@wordpress/edit-post": "^8.11.0",
"@wordpress/element": "^6.11.0",
"@wordpress/i18n": "^5.11.0",
"@wordpress/icons": "^10.11.0",
"@wordpress/plugins": "^7.11.0",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"imagesloaded": "^5.0.0",
"masonry-layout": "^4.2.2",
"react-intersection-observer": "^9.13.1",
"resolve-url-loader": "^5.0.0"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^21.4.0",
"@wordpress/scripts": "^30.4.0",
"eslint-webpack-plugin": "^4.2.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^16.1.0",
"postcss-preset-env": "^10.1.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.3.3",
"stylelint-config-prettier": "^9.0.5",
"stylelint-webpack-plugin": "^5.0.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
}
}