-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.44 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": "mcbit-theme",
"author": {
"name": "Marin Carroll",
"email": "marin@marincarroll.com"
},
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/marincarroll/mcbits"
},
"scripts": {
"build:blocks": "wp-scripts build --webpack-copy-php --output-path=blocks/build --config=config/blocks.webpack.config.js",
"start:blocks": "wp-scripts start --webpack-copy-php --output-path=blocks/build --config=config/blocks.webpack.config.js",
"build:theme": "wp-scripts build --webpack-no-externals --output-path=assets/css --config=config/theme.webpack.config.js",
"start:theme": "wp-scripts start --webpack-no-externals --output-path=assets/css --config=config/theme.webpack.config.js",
"build": "npm run build:blocks && npm run build:theme",
"start": "npm run start:blocks & npm run start:theme",
"format": "wp-scripts format",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"rtl": "rtlcss assets/css/style.css assets/css/style-rtl.css",
"make-pot": "wp-pot --dest-file=languages/mcbit.pot"
},
"devDependencies": {
"@wordpress/scripts": "^23.2.0",
"no-emit-webpack-plugin": "^4.0.1",
"rtlcss": "^3.5.0",
"wp-pot": "^1.10.2"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
}
}