astro-sw/package.json
2024-12-25 21:20:12 +01:00

46 lines
1 KiB
JSON

{
"name": "@ayco/astro-sw",
"version": "0.8.10",
"description": "Use your own authored service worker with Astro",
"homepage": "https://github.com/ayoayco/astro-sw",
"repository": {
"type": "git",
"url": "https://github.com/ayoayco/astro-sw"
},
"exports": {
".": {
"import": "./astro-sw.js"
},
"globals": {
"import": "./globals.js"
}
},
"main": "./astro-sw.js",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "astro dev",
"build": "astro build",
"build:preview:static": "astro build && astro preview",
"build:preview": "astro build && node ./server.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"withastro",
"perf"
],
"author": "Ayo Ayco",
"license": "MIT",
"devDependencies": {
"@astrojs/node": "^8.3.3",
"@fastify/middie": "^8.3.1",
"@fastify/static": "^7.0.4",
"astro": "^4.15.2",
"fastify": "^4.28.1"
},
"dependencies": {
"esbuild": "^0.23.1"
}
}