-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.35 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
60
61
62
63
64
65
66
67
68
69
{
"name": "clashvibes-plugin",
"version": "1.0.0",
"description": "=== Clashvibes Plugin === Contributors: automattic Donate link: https://example.com/ Tags: custom-background, translation-ready Requires at least: 6.0 Tested up to: 6.2 Requires PHP: 5.6 Stable tag: 1.0.0 License: GNU General Public License v2 or later",
"main": "src/index.js",
"scripts": {
"watch": "node-sass src/sass/ -o ./build/ --source-map true --output-style expanded --indent-type tab --indent-width 1 -w",
"start": "wp-scripts start",
"build": "wp-scripts build",
"format:src": "wp-scripts format ./src",
"lint:js:src": "wp-scripts lint-js ./src",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:css:src": "wp-scripts lint-style 'src/**/*.scss'",
"compile:css": "node-sass src/sass/ -o ./build/ && stylelint && postcss '*.scss' --fix || true && stylelint && postcss '*.scss' --fix",
"plugin-zip": "wp-scripts plugin-zip"
},
"author": "Raymond Thompson",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/raythompsonwebdev/clashvibes-plugin.git"
},
"keywords": [
"clash"
],
"bugs": {
"url": "https://github.com/raythompsonwebdev/clashvibes-plugin/issues"
},
"homepage": "https://github.com/raythompsonwebdev/clashvibes-plugin#readme",
"dependencies": {
"@csstools/postcss-sass": "^5.1.1",
"@wordpress/block-editor": "^12.17.0",
"@wordpress/blocks": "^12.26.0",
"@wordpress/components": "^25.15.0",
"@wordpress/hooks": "^3.49.0",
"@wordpress/i18n": "^4.49.0",
"autoprefixer": "^10.4.17",
"postcss": "^8.4.33",
"postcss-preset-env": "^9.3.0",
"postcss-scss": "^4.0.9",
"react": "^18.2.0"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@wordpress/data": "^9.19.0",
"@wordpress/icons": "^9.40.0",
"@wordpress/scripts": "^27.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"node-sass": "^9.0.0",
"prettier": "^3.2.4",
"sass": "^1.70.0",
"stylelint": "^16.2.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-prettier": "^5.0.0",
"stylelint-scss": "^6.0.0",
"url-loader": "^4.1.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}