-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.07 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
{
"name": "@syntatis/howdy",
"version": "0.1.0",
"description": "Your next modern WordPress plugin project, made easy",
"author": {
"name": "Thoriq Firdaus",
"url": "https://github.com/tfirdaus"
},
"private": true,
"license": "GPL-3.0",
"keywords": [
"wordpress",
"plugin",
"boilerplate"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"dependencies": {
"@syntatis/kubrick": "^0.1.0-beta.3",
"@wordpress/api-fetch": "^7.9.0",
"@wordpress/dom-ready": "^4.9.0",
"@wordpress/element": "^6.9.0",
"@wordpress/i18n": "^5.9.0"
},
"devDependencies": {
"@wordpress/scripts": "^30.1.0",
"cross-env": "^7.0.3"
},
"scripts": {
"start": "wp-scripts start --output-path=dist/assets",
"build": "cross-env NODE_ENV=production wp-scripts build --output-path=dist/assets",
"lint:js": "wp-scripts lint-js ./src",
"lint:css": "wp-scripts lint-style ./src",
"format": "wp-scripts format"
}
}