|
| 1 | +{ |
| 2 | + "name": "@payloadcms/kv-redis", |
| 3 | + "version": "3.6.0", |
| 4 | + "description": "Payload storage adapter for uploadthing", |
| 5 | + "homepage": "https://payloadcms.com", |
| 6 | + "repository": { |
| 7 | + "type": "git", |
| 8 | + "url": "https://github.com/payloadcms/payload.git", |
| 9 | + "directory": "packages/storage-uploadthing" |
| 10 | + }, |
| 11 | + "license": "MIT", |
| 12 | + "author": "Payload <[email protected]> (https://payloadcms.com)", |
| 13 | + "maintainers": [ |
| 14 | + { |
| 15 | + "name": "Payload", |
| 16 | + |
| 17 | + "url": "https://payloadcms.com" |
| 18 | + } |
| 19 | + ], |
| 20 | + "type": "module", |
| 21 | + "exports": { |
| 22 | + ".": { |
| 23 | + "import": "./src/index.ts", |
| 24 | + "types": "./src/index.ts", |
| 25 | + "default": "./src/index.ts" |
| 26 | + } |
| 27 | + }, |
| 28 | + "main": "./src/index.ts", |
| 29 | + "types": "./src/index.ts", |
| 30 | + "files": [ |
| 31 | + "dist" |
| 32 | + ], |
| 33 | + "scripts": { |
| 34 | + "build": "pnpm build:types && pnpm build:swc", |
| 35 | + "build:clean": "find . \\( -type d \\( -name build -o -name dist -o -name .cache \\) -o -type f -name tsconfig.tsbuildinfo \\) -exec rm -rf {} + && pnpm build", |
| 36 | + "build:swc": "swc ./src -d ./dist --config-file .swcrc --strip-leading-paths", |
| 37 | + "build:types": "tsc --emitDeclarationOnly --outDir dist", |
| 38 | + "clean": "rimraf {dist,*.tsbuildinfo}", |
| 39 | + "lint": "eslint .", |
| 40 | + "lint:fix": "eslint . --fix", |
| 41 | + "prepublishOnly": "pnpm clean && pnpm turbo build" |
| 42 | + }, |
| 43 | + "dependencies": { |
| 44 | + "ioredis": "^5.4.1" |
| 45 | + }, |
| 46 | + "devDependencies": { |
| 47 | + "payload": "workspace:*" |
| 48 | + }, |
| 49 | + "peerDependencies": { |
| 50 | + "payload": "workspace:*" |
| 51 | + }, |
| 52 | + "engines": { |
| 53 | + "node": "^18.20.2 || >=20.9.0" |
| 54 | + }, |
| 55 | + "publishConfig": { |
| 56 | + "exports": { |
| 57 | + ".": { |
| 58 | + "import": "./dist/index.js", |
| 59 | + "types": "./dist/index.d.ts", |
| 60 | + "default": "./dist/index.js" |
| 61 | + } |
| 62 | + }, |
| 63 | + "main": "./dist/index.js", |
| 64 | + "types": "./dist/index.d.ts" |
| 65 | + } |
| 66 | +} |
0 commit comments