UNPKG

payload-plugin-scheduler

Version:
80 lines (79 loc) 2.45 kB
{ "name": "payload-plugin-scheduler", "version": "0.1.3", "homepage:": "https://github.comw/wkentdag/payload-plugin-scheduler", "repository": "git@github.com:wkentdag/payload-plugin-scheduler.git", "description": "Scheduled posts plugin for PayloadCMS", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=18.20.2" }, "publishConfig": { "registry": "https://registry.npmjs.org" }, "simple-git-hooks": { "pre-commit": "npx lint-staged" }, "keywords": [ "payload", "cms", "plugin", "schedule", "scheduler", "cron", "node-schedule" ], "scripts": { "build": "tsc", "dev": "cd dev && yarn dev", "format": "prettier --write", "test": "cd dev && yarn test", "test:all": "run-p test:mongo test:postgres", "test:mongo": "PORT=3001 DATABASE_URI=mongodb://127.0.0.1/plugin-development PAYLOAD_CONFIG_PATH=src/payload.mongo.config.ts yarn test", "test:postgres": "PORT=3002 DATABASE_URI=postgres://127.0.0.1:5432/payload-plugin-scheduler PAYLOAD_CONFIG_PATH=src/payload.postgres.config.ts yarn test", "lint": "eslint src", "lint:fix": "eslint --fix --ext .ts,.tsx src", "clean": "rimraf dist && rimraf dev/yarn.lock", "prepare": "ynpx simple-git-hooks", "prerelease": "yarn clean && yarn build && yarn test:postgres", "release": "release-it" }, "author": "Will Kent-Daggett", "license": "MIT", "devDependencies": { "@payloadcms/eslint-config": "^0.0.1", "@swc/jest": "^0.2.28", "@types/debug": "^4.1.12", "@types/jest": "^29.5.11", "@types/node-schedule": "^2.1.7", "@types/qs": "^6.9.15", "@typescript-eslint/eslint-plugin": "5.12.1", "@typescript-eslint/parser": "5.12.1", "dotenv": "^8.2.0", "eslint": "^8.19.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "2.25.4", "eslint-plugin-prettier": "^4.0.0", "jest": "^29.7.0", "lint-staged": "^15.2.2", "npm-run-all": "^4.1.5", "payload": "^2.12.1", "prettier": "^2.7.1", "react": "^18.0.0", "release-it": "^17.2.0", "simple-git-hooks": "^2.11.1", "typescript": "^4.8.4", "webpack": "^5.90.3", "ynpx": "^2.1.6" }, "dependencies": { "algoliasearch": "^4.23.3", "date-fns": "^3.6.0", "debug": "^4.3.4", "node-schedule": "^2.1.1", "qs": "^6.12.1", "ts-deepmerge": "^7.0.0" } }