-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.93 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@jhb.software/payload-vercel-deployments",
"version": "0.3.1",
"description": "A Payload CMS plugin for managing Vercel deployments of static websites — includes a dashboard widget and authenticated API endpoints.",
"bugs": "https://github.com/jhb-software/payload-plugins/issues",
"repository": "https://github.com/jhb-software/payload-plugins",
"keywords": [
"payload",
"plugin",
"vercel",
"deployments",
"static",
"rebuild",
"deployment"
],
"author": "JHB Software",
"license": "MIT",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"scripts": {
"build": "pnpm copyfiles && pnpm build:types && pnpm build:swc",
"build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths --ignore '**/*.test.ts,**/*.test.tsx'",
"build:types": "tsc --project tsconfig.build.json --outDir dist --rootDir ./src",
"copyfiles": "copyfiles -u 1 \"src/**/*.{html,css,scss,ttf,woff,woff2,eot,svg,jpg,png,json}\" dist/",
"clean": "rimraf --glob {dist,*.tsbuildinfo}",
"dev": "tsc -w",
"format": "prettier --write src \"*.{json,md,js,mjs,cjs}\"",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm clean && pnpm build"
},
"peerDependencies": {
"@payloadcms/translations": "^3.85.1",
"@payloadcms/ui": "^3.85.1",
"next": "^15.0.0 || ^16.0.0",
"payload": "^3.85.1",
"react": "19.2.7",
"react-dom": "19.2.7"
},
"devDependencies": {
"@payloadcms/eslint-config": "^3.28.0",
"@payloadcms/translations": "^3.85.1",
"@payloadcms/ui": "^3.85.1",
"@swc/cli": "^0.8.1",
"@swc/core": "^1.15.41",
"@testing-library/react": "^16.3.2",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"copyfiles": "2.4.1",
"eslint": "^9.39.4",
"jsdom": "^29.1.1",
"next": "16.2.9",
"payload": "^3.85.1",
"prettier": "^3.8.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"rimraf": "6.1.3",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"files": [
"dist"
],
"publishConfig": {
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client": {
"import": "./dist/exports/client.js",
"types": "./dist/exports/client.d.ts",
"default": "./dist/exports/client.js"
}
}
},
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./client": {
"import": "./src/exports/client.ts",
"types": "./src/exports/client.ts",
"default": "./src/exports/client.ts"
}
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.8.0"
}