-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.37 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
{
"name": "octa",
"private": true,
"license": "MIT",
"browserslist": [
"extends @roots/browserslist-config"
],
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"scripts": {
"build": "yarn bud build production",
"dev": "yarn bud build development",
"translate": "npm run translate:pot && npm run translate:update",
"translate:pot": "wp i18n make-pot . ./resources/lang/octa.pot --include=\"app,config,resources,public/dist/js\" --domain=\"octa\"",
"translate:update": "for file in ./resources/lang/*.po; do wp i18n update-po ./resources/lang/octa.pot $file; done",
"translate:compile": "npm run translate:mo && npm run translate:js",
"translate:js": "wp i18n make-json ./resources/lang --pretty-print",
"translate:mo": "wp i18n make-mo ./resources/lang ./resources/lang"
},
"devDependencies": {
"@roots/bud": "6.23.3",
"@roots/bud-eslint": "6.23.3",
"@roots/bud-preset-wordpress": "6.23.3",
"@roots/bud-prettier": "6.23.3",
"@roots/bud-stylelint": "6.23.3",
"@roots/bud-swc": "6.23.3",
"@roots/bud-tailwindcss": "6.23.3",
"@roots/eslint-config": "6.23.3",
"@roots/sage": "6.23.3",
"@tailwindcss/forms": "^0.5.3",
"@types/wordpress__block-editor": "11.5.15",
"@types/wordpress__blocks": "12.5.15",
"typescript": "5.5.4"
},
"dependencies": {
"@roots/wordpress-hmr": "6.23.3"
}
}