@vitrailweb/payload-plugin-articles 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +11 -7
package/package.json CHANGED
@@ -1,11 +1,15 @@
1
1
  {
2
2
  "name": "@vitrailweb/payload-plugin-articles",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Payload plugin that adds an Articles collection",
5
5
  "license": "MIT",
6
6
  "author": {
7
7
  "name": "Vitrail Web"
8
8
  },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/Vitrail-Web/payload-plugin-articles"
12
+ },
9
13
  "type": "module",
10
14
  "exports": {
11
15
  ".": {
@@ -26,9 +30,9 @@
26
30
  "@payloadcms/db-sqlite": "3.84.1",
27
31
  "@payloadcms/eslint-config": "3.28.0",
28
32
  "@payloadcms/next": "3.84.1",
33
+ "@payloadcms/plugin-seo": "3.84.1",
29
34
  "@payloadcms/richtext-lexical": "3.84.1",
30
35
  "@payloadcms/ui": "3.84.1",
31
- "@payloadcms/plugin-seo": "3.84.1",
32
36
  "@playwright/test": "1.58.2",
33
37
  "@swc-node/register": "1.10.9",
34
38
  "@swc/cli": "0.6.0",
@@ -56,8 +60,8 @@
56
60
  "vitest": "4.0.18"
57
61
  },
58
62
  "peerDependencies": {
59
- "payload": "^3.84.1",
60
- "@payloadcms/plugin-seo": "^3.84.1"
63
+ "@payloadcms/plugin-seo": "^3.84.1",
64
+ "payload": "^3.84.1"
61
65
  },
62
66
  "engines": {
63
67
  "node": "^18.20.2 || >=20.9.0",
@@ -67,7 +71,6 @@
67
71
  "access": "public",
68
72
  "registry": "https://registry.npmjs.org/"
69
73
  },
70
- "dependencies": {},
71
74
  "scripts": {
72
75
  "build": "pnpm copyfiles && pnpm build:types && pnpm build:swc",
73
76
  "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths",
@@ -82,8 +85,9 @@
82
85
  "generate:types": "pnpm dev:generate-types",
83
86
  "lint": "eslint",
84
87
  "lint:fix": "eslint ./src --fix",
85
- "test": "pnpm test:int && pnpm test:e2e",
88
+ "test": "pnpm test:unit && pnpm test:int && pnpm test:e2e",
86
89
  "test:e2e": "playwright test",
87
- "test:int": "vitest"
90
+ "test:int": "vitest run dev/int.spec.ts",
91
+ "test:unit": "vitest run test/unit.spec.ts"
88
92
  }
89
93
  }