@hellowearemito/payload-plugin-recently-visited
Version:
A plugin for Payload CMS to list recently visited items on the admin dashboard
64 lines • 1.54 kB
JSON
{
"name": "@hellowearemito/payload-plugin-recently-visited",
"version": "0.1.7",
"description": "A plugin for Payload CMS to list recently visited items on the admin dashboard",
"keywords": [
"payload",
"cms",
"plugin",
"recently",
"visited",
"collection",
"history",
"payload-plugin"
],
"main": "./dist/index.js",
"author": "Mito Digital <dev@mito.hu> (https://mito.group/digital)",
"files": [
"dist"
],
"maintainers": [
{
"name": "Arpad Bajzath",
"email": "a.bajzath@mito.hu",
"url": "https://x.com/BajzathArpad"
}
],
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./RecentlyVisited": {
"import": "./dist/RecentlyVisited.jsx",
"types": "./dist/RecentlyVisited.d.ts"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"license": "MIT",
"peerDependencies": {
"next": "^15.0.3",
"payload": "^3.3.0"
},
"dependencies": {
"@payloadcms/ui": "^3.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.12",
"next": "^15.0.3",
"payload": "^3.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"typescript": "^5.7.2"
},
"scripts": {
"build": "tsc --project tsconfig.json && cp src/RecentlyVisitedPlugin.css dist/RecentlyVisitedPlugin.css",
"test": "echo \"Error: no test specified\" && exit 1"
}
}