-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 917 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 917 Bytes
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
{
"name": "@syntatis/howdy",
"version": "0.1.0",
"description": "Build your next modern plugin for WordPress®",
"author": {
"name": "Thoriq Firdaus",
"url": "https://github.com/tfirdaus"
},
"private": true,
"license": "GPL-3.0",
"keywords": [
"wordpress",
"plugin",
"boilerplate"
],
"dependencies": {
"@syntatis/kubrick": "^0.2.0",
"@wordpress/api-fetch": "^7.27.0",
"@wordpress/dom-ready": "^4.27.0",
"@wordpress/element": "^6.27.0",
"@wordpress/i18n": "^6.0.0"
},
"devDependencies": {
"@wordpress/scripts": "^30.20.0",
"cross-env": "^10.0.0"
},
"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",
"update-packages": "wp-scripts packages-update"
}
}