-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@hellowearemito/payload-plugin-recently-visited",
"version": "1.0.0",
"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": "./src/index.ts",
"author": "Mito Digital <[email protected]> (https://mito.group/digital)",
"files": ["dist"],
"tags": {
"latest": "1.0.0",
"legacy": "0.1.0"
},
"maintainers": [
{
"name": "Arpad Bajzath",
"email": "[email protected]",
"url": "https://x.com/BajzathArpad"
}
],
"types": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts",
"types": "./src/index.ts"
},
"./RecentlyVisited": {
"import": "./src/RecentlyVisited.tsx",
"types": "./dist/RecentlyVisited.tsx"
}
},
"publishConfig": {
"main": "./dist/index.js",
"registry": "https://registry.npmjs.org/",
"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"
}
}
},
"type": "module",
"scripts": {
"build": "tsc --project tsconfig.json && cp src/RecentlyVisitedPlugin.css dist/RecentlyVisitedPlugin.css",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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"
}
}