2022-06-27 18:26:21 +00:00
|
|
|
{
|
|
|
|
"name": "@astrojs/prefetch",
|
|
|
|
"description": "Faster page navigations by prefetching links when the browser is idle.",
|
2022-07-12 13:08:15 +00:00
|
|
|
"version": "0.0.5",
|
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": [
|
|
|
|
"astro-integration"
|
|
|
|
],
|
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"
|
|
|
|
},
|
|
|
|
"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": {
|
|
|
|
"@types/chai": "^4.3.1",
|
|
|
|
"@types/chai-as-promised": "^7.1.5",
|
|
|
|
"@types/mocha": "^9.1.1",
|
|
|
|
"astro": "workspace:*",
|
|
|
|
"astro-scripts": "workspace:*",
|
|
|
|
"playwright": "^1.22.2"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"throttles": "^1.0.1"
|
|
|
|
}
|
|
|
|
}
|