-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1.16 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
{
"name": "shiny-code",
"version": "1.0.1",
"description": "A Gutenberg block for editing and displaying code with syntax highlighting.",
"homepage": "https://www.cedaro.com/",
"license": "GPL-2.0-or-later",
"repository": "cedaro/shiny-code",
"dependencies": {
"classnames": "^2.5.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@wordpress/babel-preset-default": "^8.12.0",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"mini-css-extract-plugin": "^2.9.2",
"minimist": "^1.2.8",
"node-wp-i18n": "^1.2.7",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-remove-empty-scripts": "^1.0.4"
},
"scripts": {
"build": "BABEL_ENV=default NODE_ENV=production webpack",
"dev": "BABEL_ENV=default webpack --watch"
},
"distFiles": [
"shiny-code.php",
"README.md",
"{assets,build,languages,php}/**",
"vendor/autoload.php",
"vendor/composer/*.php",
"vendor/{cedaro/wp-plugin,psr/container}/src/**"
]
}