UNPKG

next-server-actions-parallel

Version:

Run Next.js server actions in parallel. Like tRPC, but without the boilerplate.

76 lines (75 loc) 1.8 kB
{ "name": "next-server-actions-parallel", "version": "1.2.2", "description": "Run Next.js server actions in parallel. Like tRPC, but without the boilerplate.", "keywords": [ "nextjs", "server-actions", "server", "actions", "parallel", "concurrent", "concurrency", "non-blocking", "rpc", "performance", "react", "typescript", "dx" ], "license": "MIT", "repository": "https://github.com/icflorescu/next-server-actions-parallel", "author": { "name": "Ionut-Cristian Florescu", "email": "ionut.florescu@gmail.com", "url": "https://github.com/icflorescu" }, "funding": { "type": "github", "url": "https://github.com/sponsors/icflorescu" }, "files": [ "./dist", "./README.md", "./LICENSE" ], "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.ts", "default": "./dist/index.js" } } }, "scripts": { "dev": "next dev --turbopack", "test": "playwright test", "check": "next lint && tsc", "build": "next build", "start": "next start", "prepublishOnly": "pnpm version patch && tsup" }, "devDependencies": { "@playwright/test": "^1.49.1", "@types/node": "^22.10.5", "@types/react": "^19.0.4", "@types/react-dom": "^19.0.2", "clsx": "^2.1.1", "eslint": "^9.17.0", "eslint-config-next": "15.1.4", "eslint-plugin-no-relative-import-paths": "^1.6.1", "next": "15.1.4", "playwright": "^1.49.1", "react": "19.0.0", "react-dom": "19.0.0", "tsup": "^8.3.5", "typescript": "^5.7.3" } }