-
Notifications
You must be signed in to change notification settings - Fork 359
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "varia",
"version": "1.6.41",
"description": "A variable-based design system for WordPress sites built with Gutenberg.",
"devDependencies": {
"@wordpress/browserslist-config": "^6.16.0",
"autoprefixer": "^10.4.2",
"chokidar-cli": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"postcss-focus-within": "^9.0.1",
"rtlcss": "^4.1.0",
"sass": "^1.83.4"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"start": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
"build:style": "sass style.scss style.css && postcss -r style.css",
"build:style-editor": "sass style-editor.scss style-editor.css && postcss -r style-editor.css",
"build:rtl": "rtlcss style.css style-rtl.css",
"build:print": "sass print.scss print.css && postcss -r print.css",
"build:woocommerce": "sass style-woocommerce.scss style-woocommerce.css && postcss -r style-woocommerce.css",
"build:woocommerce-rtl": "rtlcss style-woocommerce.css style-woocommerce-rtl.css",
"build": "run-s \"build:*\"",
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial",
"child-theme": "sh ../theme-dev-utils/build-child-theme.sh",
"children": "sh ./rebuild-child-themes.sh",
"bump-versions": "sh ./bump-version-numbers.sh"
}
}