-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.73 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
{
"name": "payload-express-middleware",
"version": "0.6.0",
"author": "Kfir Matityhau<kfir25812@gmail.com>",
"homepage:": "https://github.com/kfiross/payload-express-middleware",
"description": "Enabling Express.js backend to interact with Payload CMS APIs seemlessly",
"license": "MIT",
"type": "module",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"build": "bun run build.ts",
"format": "bun x prettier --write '**/*.{js,jsx,ts,tsx,json,md,yaml,yml}'",
"release": "bun run build && bun changeset publish"
},
"files": [
"src",
"dist"
],
"keywords": [
"payload",
"express",
"middleware",
"bun"
],
"homepage": "https://github.com/kfiross/payload-express-middleware#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kfiross/payload-express-middleware.git"
},
"bugs": {
"url": "https://github.com/kfiross/payload-express-middleware/issues"
},
"dependencies": {
"jsonwebtoken": "^9.0.0",
"qs-esm": "7.0.2"
},
"peerDependencies": {
"payload": "^3.0.0",
"express": "^4.18.0"
},
"devDependencies": {
"payload": "^3.0.0",
"express": "^4.18.2",
"@changesets/cli": "^2.29.7",
"@types/bun": "^1.1.10",
"@types/express": "4.17.21",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "9.0.10",
"@types/node": "^22.13.13",
"bun-plugin-dts": "^0.3.0",
"prettier": "3.6.2",
"sort-package-json": "3.4.0",
"typescript": "5.9.3"
},
"registry": "https://registry.npmjs.org/"
}