generated from a8cteam51/team51-plugin-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.52 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
{
"name": "team51-plugin-qllm",
"version": "1.0.5",
"description": "A qllm for WP.com Special Projects plugins",
"author": {
"name": "WordPress.com Special Projects Team",
"url": "https://wpspecialprojects.wordpress.com"
},
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress"
],
"homepage": "https://wordpress.org/plugins/team51-plugin-qllm",
"repository": "https://github.com/a8cteam51/team51-plugin-qllm",
"bugs": "https://github.com/a8cteam51/team51-plugin-qllm/issues",
"engines": {
"node": ">=18.15",
"npm": ">=9.5"
},
"devDependencies": {
"@csstools/postcss-sass": "^5.0.1",
"@wordpress/browserslist-config": "^5.9.1",
"@wordpress/icons": "^9.22.0",
"@wordpress/postcss-plugins-preset": "^4.10.2",
"@wordpress/scripts": "^25.3.4",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"rtlcss": "^4.0.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"browserslist": [
"extends @wordpress/browserslist-config"
],
"scripts": {
"build": "npm-run-all --sequential build:**",
"build:blocks": "wp-scripts build --webpack-src-dir=blocks/src --output-path=blocks/build",
"build:assets:scripts": "wp-scripts build assets/js/src/*.js --output-path=assets/js/build",
"format": "npm-run-all --sequential format:**",
"format:scripts": "wp-scripts format blocks assets/js --no-error-on-unmatched-pattern",
"format:styles": "npm run lint:styles -- --fix",
"lint": "npm-run-all --sequential lint:**",
"lint:scripts": "wp-scripts lint-js blocks assets/js --no-error-on-unmatched-pattern --fix",
"lint:styles": "wp-scripts lint-style blocks/**/*.{css,sass,scss} assets/css/**/*.{css,sass,scss} --allow-empty-input --report-descriptionless-disables --report-invalid-scope-disables --report-needless-disables --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:readme-md": "wp-scripts lint-md-docs README.md",
"packages-update": "wp-scripts packages-update --dist-tag=wp-6.2",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"start": "npm-run-all --parallel start:**",
"start:blocks": "wp-scripts start --webpack-src-dir=blocks/src --output-path=blocks/build",
"start:assets:scripts": "wp-scripts start assets/js/src/*.js --output-path=assets/js/build"
}
}