-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.6 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
41
42
{
"name": "mone",
"author": "Tomoki Shimomura",
"license": "GPL-2.0-or-later",
"scripts": {
"build": "wp-scripts build --webpack-copy-php --experimental-modules",
"start": "wp-scripts start --webpack-copy-php --experimental-modules",
"format": "wp-scripts format ./src",
"lint:css": "wp-scripts lint-style --fix",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer format && composer phpcs",
"make-pot": "wp i18n make-pot . languages/mone.pot --exclude=src,dist,vendor,node_modules",
"translate": "rimraf build && npm run build && npm run make-pot && cd languages && wp i18n make-json ja.po --no-purge && wp i18n make-php . && cd ../",
"packages-update": "wp-scripts packages-update",
"dist": "rimraf dist && npm run build && composer install --no-dev && mkdir -p dist/mone && cp -r assets build includes languages parts patterns styles templates vendor *.txt *.png *.php *.css theme.json dist/mone",
"prepare": "husky install"
},
"devDependencies": {
"@wordpress/scripts": "^30.3.0",
"husky": "^8.0.1"
},
"dependencies": {
"@emotion/styled": "^11.13.0",
"@monaco-editor/react": "^4.6.0",
"@wordpress/babel-plugin-makepot": "^6.9.0",
"@wordpress/dataviews": "^4.5.0",
"@wordpress/i18n": "^5.9.0",
"@wordpress/icons": "^10.9.0",
"@wordpress/interactivity": "^6.9.0",
"@wordpress/interactivity-router": "^2.9.0",
"@wordpress/interface": "^6.9.0",
"axios": "^1.7.7",
"babel-loader": "^9.2.1",
"clsx": "^2.1.1",
"fast-deep-equal": "^3.1.3",
"highlight.js": "^11.10.0",
"html-react-parser": "^5.1.12",
"po2json": "^0.4.5",
"react-icons": "^5.3.0",
"satori": "^0.11.2"
}
}