-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "wordpress-theme-natbienetre",
"version": "1.0.0",
"description": "A wordpress theme for natbienetre",
"author": "Pierre PÉRONNET",
"license": "MPL-2.0",
"keywords": [
"WordPress",
"Theme"
],
"homepage": "https://github.com/natbienetre/wordpress-theme",
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/_s.git"
},
"bugs": {
"url": "https://github.com/Automattic/_s/issues"
},
"devDependencies": {
"@wordpress/scripts": "^26.13.0",
"bootstrap": "^5.3.1",
"rtlcss": "^3.5.0",
"sass": "^1.64.1"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"scripts": {
"watch:scss": "sass --style compressed --source-map --embed-sources --no-error-css --watch --load-path=node_modules sass/:./",
"watch:js": "wp-scripts start scripts/customizer",
"compile": "npm run compile:css && npm run compile:js && npm run compile:rtl",
"compile:css": "sass --style compressed --source-map --load-path=node_modules sass/:./",
"compile:js": "wp-scripts build scripts/customizer",
"compile:rtl": "rtlcss style.css style-rtl.css",
"lint:scss": "wp-scripts lint-style 'sass/**/*.scss'",
"lint:js": "wp-scripts lint-js 'scripts/*'",
"bundle": "npm run compile && tar -cvzf natbienetre.tar.gz *.php *.css *.map build inc languages template-parts",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip"
},
"dependencies": {
"jquery": "^3.7.1"
}
}