-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1013 Bytes
/
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
{
"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.1.0",
"@wordpress/api-fetch": "^7.17.0",
"@wordpress/dom-ready": "^4.17.0",
"@wordpress/element": "^6.17.0",
"@wordpress/i18n": "^5.17.0"
},
"devDependencies": {
"@wordpress/scripts": "^30.10.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"
}
}