UNPKG

@serwist/build

Version:

A module that integrates into your build process, helping you generate a manifest of local files that should be precached.

80 lines 1.97 kB
{ "name": "@serwist/build", "version": "9.0.13", "type": "module", "description": "A module that integrates into your build process, helping you generate a manifest of local files that should be precached.", "files": [ "src", "dist" ], "keywords": [ "serwist", "serwistjs", "service worker", "caching", "fetch requests", "offline", "file manifest" ], "engines": { "node": ">=18.0.0" }, "author": "Google's Web DevRel Team", "contributors": [ "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": { "*": { "schema": [ "./dist/index.schema.d.ts" ] } }, "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "./schema": { "types": "./dist/index.schema.d.ts", "default": "./dist/index.schema.js" }, "./package.json": "./package.json" }, "dependencies": { "common-tags": "1.8.2", "glob": "10.4.5", "pretty-bytes": "6.1.1", "source-map": "0.8.0-beta.0", "zod": "3.24.2" }, "devDependencies": { "@types/common-tags": "1.8.4", "@types/node": "22.14.0", "rollup": "4.39.0", "type-fest": "4.39.1", "typescript": "5.6.3", "@serwist/configs": "9.0.13", "@serwist/utils": "9.0.13" }, "peerDependencies": { "typescript": ">=5.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "scripts": { "build": "rimraf dist && NODE_OPTIONS='--max-old-space-size=4096' NODE_ENV=production rollup --config rollup.config.js", "dev": "rollup --config rollup.config.js --watch", "lint": "biome lint ./src", "typecheck": "tsc" } }