wpmind/package.json

28 lines
780 B
JSON
Raw Normal View History

2023-06-02 17:29:56 +03:00
{
"name": "mind",
"version": "0.1.0",
"description": "Mind - Content Assistant Plugin based on OpenAI",
"author": "Mind Team",
2023-06-02 17:29:56 +03:00
"license": "GPL-2.0-or-later",
"main": "build/index.js",
"scripts": {
"dev": "wp-scripts start --hot --progress",
"build": "wp-scripts build --progress",
"build:production": "npm run build && npm run plugin-zip",
2023-06-02 17:29:56 +03:00
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^14.7.0",
"@wordpress/prettier-config": "^2.17.0",
"@wordpress/scripts": "^26.2.0",
"@wordpress/stylelint-config": "^21.17.0",
"prettier": "^2.8.8"
},
"dependencies": {
"marked": "^5.0.4"
2023-06-02 17:29:56 +03:00
}
}