strapi-plugin-publisher
Version:
A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.
97 lines (96 loc) • 3.09 kB
JSON
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-publisher",
"version": "2.0.3",
"description": "A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write **/*.{ts,js,json,yml}",
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"exports": {
"./strapi-admin": {
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@PluginPal",
"url": "https://github.com/PluginPal"
}
],
"homepage": "https://github.com/PluginPal/strapi-plugin-publisher#readme",
"repository": {
"type": "git",
"url": "https://github.com/PluginPal/strapi-plugin-publisher.git"
},
"bugs": {
"url": "https://github.com/PluginPal/strapi-plugin-publisher/issues"
},
"dependencies": {
"lodash": "^4.17.21",
"prop-types": "^15.8.1",
"react-intl": "^6.6.2",
"react-query": "^3.39.3"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@strapi/sdk-plugin": "^5.2.7",
"@strapi/strapi": "^5.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"peerDependencies": {
"@strapi/design-system": "^2.0.0-rc.11",
"@strapi/icons": "^2.0.0-rc.11",
"@strapi/strapi": "^5.2.0",
"@strapi/utils": "^5.2.0",
"react": "^17.0.0 || ^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"strapi": {
"displayName": "Publisher",
"name": "publisher",
"description": "A plugin for Strapi Headless CMS that provides the ability to schedule publishing for any content type.",
"kind": "plugin"
},
"engines": {
"node": ">=18.0.0 <=22.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"publishing",
"schedule publish"
],
"license": "MIT"
}