-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.03 KB
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
{
"name": "spectra-blocks",
"version": "1.0.7",
"description": "Spectra Blocks - A fresh Gutenberg block plugin",
"author": "The WordPress Contributors",
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build --experimental-modules --webpack-copy-php",
"build:fresh": "del-cli build/* && wp-scripts build --experimental-modules --webpack-copy-php",
"build:all": "npm run build:fresh && npm run build --prefix admin",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"test:contract": "node tests/contract/imported-baseline-contract.mjs",
"packages-update": "wp-scripts packages-update",
"synctextdomains": "grunt synctextdomains",
"i18n": "grunt i18n",
"makepot": "grunt i18n && wp i18n make-pot . languages/spectra-blocks.pot --skip-audit --exclude=node_modules,vendor,lib,build,admin/assets/build,admin/assets/src,bin",
"update-icons": "node bin/generate-icons.js",
"zip": "grunt zip",
"release": "grunt release",
"start": "wp-scripts start --experimental-modules --webpack-copy-php",
"start:fresh": "del-cli build/* && wp-scripts start --experimental-modules --webpack-copy-php"
},
"dependencies": {
"@wordpress/block-editor": "^14.12.0",
"@wordpress/blocks": "^14.6.0",
"@wordpress/compose": "^7.17.0",
"@wordpress/data": "^10.17.0",
"@wordpress/element": "^6.17.0",
"@wordpress/interactivity": "^6.17.0",
"@wordpress/keycodes": "^4.17.0",
"countup.js": "^2.9.0",
"html-react-parser": "^5.2.5",
"react-select": "^5.10.1",
"react-virtualized": "^9.22.6",
"swiper": "^12.1.2"
},
"devDependencies": {
"@wordpress/scripts": "^31.5.0",
"del-cli": "^7.0.0",
"grunt": "^1.6.1",
"grunt-text-replace": "^0.4.0",
"grunt-wp-readme-to-markdown": "^2.1.0"
},
"overrides": {
"@babel/runtime": ">=7.26.10",
"webpack-dev-server": ">=5.2.1",
"grunt": {
"minimatch": "^3.1.5"
},
"markdownlint-cli": {
"minimatch": "^3.1.5"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.9"
}
}
}