2022-06-27 18:26:21 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/prefetch",
|
2023-03-13 14:25:47 +00:00
|
|
|
"description": "Prefetch page navigations in your Astro site",
|
2023-08-30 11:38:28 +00:00
|
|
|
"version": "0.4.0",
|
2022-06-27 18:26:21 +00:00
|
|
|
"type": "module",
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"author": "withastro",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/withastro/astro.git",
|
|
|
|
"directory": "packages/astro-prefetch"
|
|
|
|
},
|
2022-07-08 20:57:10 +00:00
|
|
|
"keywords": [
|
2022-11-01 19:55:20 +00:00
|
|
|
"astro-integration",
|
|
|
|
"performance",
|
|
|
|
"withastro"
|
2022-07-08 20:57:10 +00:00
|
|
|
],
|
2022-06-27 18:26:21 +00:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 19:10:34 +00:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/prefetch/",
|
2022-06-27 18:26:21 +00:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./client.js": "./dist/client.js",
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 08:54:00 +00:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-06-27 18:26:21 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "playwright test",
|
|
|
|
"test:match": "playwright test -g"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-08-23 11:52:13 +00:00
|
|
|
"@playwright/test": "^1.37.1",
|
2022-06-27 18:26:21 +00:00
|
|
|
"astro": "workspace:*",
|
2023-08-23 11:52:13 +00:00
|
|
|
"astro-scripts": "workspace:*"
|
2022-06-27 18:26:21 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"throttles": "^1.0.1"
|
|
|
|
}
|
|
|
|
}
|