This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
forked from swissspidy/gutenberg-bento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.5 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
{
"name": "gutenberg-bento",
"private": true,
"description": "An exploratory plugin for using Bento components in Gutenberg",
"repository": {
"type": "git",
"url": "git+https://github.com/swissspidy/gutenberg-bento.git"
},
"author": "swissspidy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/swissspidy/gutenberg-bento/issues"
},
"homepage": "https://github.com/swissspidy/gutenberg-bento#readme",
"dependencies": {
"@bentoproject/accordion": "1.2112231523.2",
"@bentoproject/base-carousel": "1.2112231523.2",
"@bentoproject/date-countdown": "1.2112231523.2",
"@bentoproject/fit-text": "1.2112231523.2",
"@bentoproject/lightbox-gallery": "1.2112231523.2",
"@bentoproject/sidebar": "1.2112231523.2",
"@bentoproject/social-share": "1.2112231523.2",
"@wordpress/blob": "^3.6.0",
"@wordpress/block-editor": "^8.5.1",
"@wordpress/blocks": "^11.3.1",
"@wordpress/components": "^19.7.0",
"@wordpress/compose": "^5.4.0",
"@wordpress/core-data": "^4.4.1",
"@wordpress/data": "^6.7.0",
"@wordpress/element": "^4.0.0",
"@wordpress/i18n": "^4.7.0",
"@wordpress/icons": "^8.3.0",
"@wordpress/primitives": "^3.3.0",
"classnames": "^2.3.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@wordpress/scripts": "^22.4.0"
},
"scripts": {
"build": "npm run build:blocks && npm run build:self-hosting && npm run build:lightbox-gallery && npm run build:copy-tmp-files",
"build:blocks": "wp-scripts build",
"build:self-hosting": "wp-scripts build src/self-hosting/bento-accordion.js src/self-hosting/bento-base-carousel.js src/self-hosting/bento-date-countdown.js src/self-hosting/bento-fit-text.js src/self-hosting/bento-lightbox-gallery.js src/self-hosting/bento-social-share.js --output-path=tmp1",
"build:lightbox-gallery": "npx wp-scripts build src/lightbox-gallery/lightbox-gallery.js --output-path=tmp2",
"build:copy-tmp-files":"mkdir -p build/self-hosting && cp tmp1/bento-* build/self-hosting/ && rm -rf tmp1 && mkdir -p build/lightbox-gallery && cp tmp2/lightbox-* build/lightbox-gallery/ && rm -rf tmp2",
"format": "wp-scripts format",
"format:php": "composer format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:md:js": "wp-scripts lint-md-js",
"lint:php": "composer lint",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:e2e:help": "wp-scripts test-e2e --help",
"test:e2e:debug": "wp-scripts --inspect-brk test-e2e --puppeteer-devtools",
"wp-env": "wp-env"
}
}