-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.33 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": "mind",
"version": "0.2.0",
"description": "Mind - Content Assistant Plugin based on OpenAI",
"author": "Mind Team",
"license": "GPL-2.0-or-later",
"files": [
"assets",
"build",
"classes",
"mind.php",
"readme.txt"
],
"scripts": {
"dev": "wp-scripts start --hot --progress",
"build": "wp-scripts build --progress",
"build:prod": "npm run make-pot && npm run make-json && npm run build && npm run plugin-zip",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "composer run phpcs",
"make-pot": "composer wp -- i18n make-pot ./ ./languages/mind.pot --skip-audit --exclude=vendor,vendors,tests,node_modules,build,dist-zip --headers='{\"Last-Translator\":\"Lazy Blocks Team\",\"Report-Msgid-Bugs-To\":\"https://github.com/nk-crew/mind/issues\"}'",
"make-json": "po2json ./languages/mind.pot ./languages/mind.json --format=jed1.x --pretty --domain=mind",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^17.2.0",
"@wordpress/prettier-config": "^3.2.0",
"@wordpress/scripts": "^26.16.0",
"@wordpress/stylelint-config": "^21.28.0",
"po2json": "^0.4.5",
"prettier": "^3.1.0"
},
"dependencies": {
"clsx": "^2.0.0",
"marked": "^10.0.0",
"react-transition-group": "^4.4.5"
}
}