-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.46 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
{
"name": "slider-block",
"version": "0.1.0",
"description": "Display a slider.",
"contributors": [
{
"name": "Pixel Albatross",
"homepage": "https://pixelalbatross.pt"
},
{
"name": "Sérgio Santos",
"url": "https://s3rgiosan.dev",
"role": "developer"
}
],
"repository": {
"type": "git",
"url": "https://github.com/pixelalbatross/slider-block"
},
"license": "GPL-2.0-or-later",
"main": "build/slider/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"format:src": "wp-scripts format src",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"translate": "npm run translate:pot && npm run translate:update",
"translate:pot": "wp i18n make-pot . languages/slider-block.pot --exclude=src",
"translate:update": "wp i18n update-po languages/slider-block.pot languages/*.po",
"translate:compile": "npm run translate:mo && npm run translate:js",
"translate:js": "wp i18n make-json languages --no-purge",
"translate:mo": "wp i18n make-mo languages languages"
},
"devDependencies": {
"@wordpress/scripts": "^26.0.0",
"postcss": "^8.4.21",
"postcss-import": "^15.1.0",
"postcss-mixins": "^9.0.4",
"postcss-preset-env": "^8.1.0"
},
"dependencies": {
"swiper": "^9.4.0"
}
}