-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.75 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.75 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
{
"name": "wp-eclipse",
"homepage": "https://github.com/NicoGill/wp-eclipse",
"keywords": [
"wordpress",
"theme",
"gutenberg"
],
"license": "GPL-2.0-or-later",
"version": "1.2.2",
"description": "WordPress development starter hybrid theme by (and mostly for) Nicolas Gillium.",
"author": "NicoGill",
"repository": {
"type": "git",
"url": "https://github.com/NicoGill/wp-eclipse.git"
},
"bugs": "https://github.com/NicoGill/wp-eclipse/issues",
"private": true,
"devDependencies": {
"@wordpress/create-block": "^4.83.0",
"@wordpress/prettier-config": "^4.40.0",
"@wordpress/scripts": "^31.5.0",
"@wordpress/stylelint-config": "^23.32.0",
"browser-sync-webpack-plugin": "^2.4.0",
"copy-webpack-plugin": "^13.0.1",
"cross-env": "^10.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"glob": "^13.0.5",
"image-minimizer-webpack-plugin": "^4.1.4",
"sharp": "^0.34.5",
"svg-spritemap-webpack-plugin": "^5.1.0"
},
"dependencies": {
"a11y-dialog": "^8.1"
},
"scripts": {
"build": "wp-scripts build",
"create:block": "npm run create:block:run -- --variant dynamic",
"create:block:acf": "npm run create:block:run -- --variant acf",
"create:block:run": "cd blocks && create-block --template ../inc/block-template --no-plugin",
"start": "cross-env NODE_OPTIONS=--no-deprecation wp-scripts start",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:css:fix": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:js:fix": "wp-scripts lint-js --fix",
"lint:style": "stylelint \"assets/**/*.scss\" \"blocks/**/*.scss\"",
"lint:style:fix": "stylelint \"assets/**/*.scss\" \"blocks/**/*.scss\" --fix",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json"
}
}