UNPKG

@serwist/turbopack

Version:

A module that integrates Serwist into your Next.js / Turbopack application.

103 lines 2.5 kB
{ "name": "@serwist/turbopack", "version": "10.0.0-preview.12", "type": "module", "sideEffects": false, "description": "A module that integrates Serwist into your Next.js / Turbopack application.", "files": [ "src", "dist" ], "keywords": [ "serwist", "serwistjs", "sw", "service worker", "progressive web apps", "web", "service-worker", "progressive-web-apps", "next", "next.js", "turbo", "turbopack", "pwa" ], "engines": { "node": ">=20.0.0" }, "author": "Serwist <ducanh2912.rusty@gmail.com> (https://serwist.pages.dev/)", "license": "MIT", "repository": "https://github.com/serwist/serwist", "bugs": "https://github.com/serwist/serwist/issues", "homepage": "https://serwist.pages.dev", "main": "./dist/index.js", "types": "./dist/index.d.ts", "typesVersions": { "*": { "worker": [ "./dist/index.worker.d.ts" ], "schema": [ "./dist/index.schema.d.ts" ] } }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./react": { "types": "./dist/index.react.d.ts", "default": "./dist/index.react.js" }, "./worker": { "types": "./dist/index.worker.d.ts", "default": "./dist/index.worker.js" }, "./schema": { "types": "./dist/index.schema.d.ts", "default": "./dist/index.schema.js" }, "./package.json": "./package.json" }, "dependencies": { "@swc/core": "1.12.14", "esbuild-wasm": "0.25.8", "kolorist": "1.8.0", "zod": "4.0.5", "@serwist/build": "10.0.0-preview.12", "@serwist/window": "10.0.0-preview.12", "serwist": "10.0.0-preview.12" }, "devDependencies": { "@types/node": "24.0.14", "@types/react": "19.1.8", "next": "15.4.1", "react": "19.1.0", "react-dom": "19.1.0", "rollup": "4.45.1", "type-fest": "4.41.0", "typescript": "5.8.3", "@serwist/configs": "10.0.0-preview.12", "@serwist/utils": "10.0.0-preview.12" }, "peerDependencies": { "next": ">=14.0.0", "react": ">=18.0.0", "typescript": ">=5.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "scripts": { "build": "rimraf dist && NODE_ENV=production rollup --config rollup.config.js", "dev": "rollup --config rollup.config.js --watch", "lint": "biome lint ./src", "qcheck": "biome check ./src", "typecheck": "tsc" } }