-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.23 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
{
"name": "yourplugin",
"version": "1.0.0",
"description": "A starter project for creating a Wordpress plugin.",
"keywords": [
"wordpress",
"template",
"plugin"
],
"type": "module",
"homepage": "https://www.deschutesdesigngroup.com",
"license": "MIT",
"author": {
"name": "Jon Erickson",
"email": "[email protected]",
"url": "https://www.deschutesdesigngroup.com"
},
"scripts": {
"dev": "bud dev",
"build": "bud build",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --fix 'src/resources/**/*.js' './*.js'",
"format": "prettier 'src/resources/**/*.{blade.php,js,json}' './*.{js,json}' --write --config ./.prettierrc",
"test:format": "prettier 'src/resources/**/*.{blade.php,js,json}' './*.{js,json}' --check --config ./.prettierrc",
"package": "./scripts/package.sh"
},
"devDependencies": {
"@roots/bud": "^6.14.3",
"@roots/bud-eslint": "^6.14.3",
"@roots/bud-postcss": "^6.15.2",
"@roots/bud-prettier": "^6.14.3",
"@roots/bud-tailwindcss": "^6.14.3",
"@roots/eslint-config": "^6.14.3",
"@shufo/prettier-plugin-blade": "^1.11.0",
"@tailwindcss/forms": "^0.5.4",
"consola": "^3.2.3",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3"
}
}