0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-23 21:53:55 -05:00
astro/packages/integrations/web-vitals/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
JSON
Raw Normal View History

2024-05-03 10:40:53 -05:00
{
"name": "@astrojs/web-vitals",
"description": "Track your websites performance with Astro DB",
"version": "0.0.0",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/web-vitals"
},
"keywords": [
"withastro",
"astro-integration"
],
"bugs": "https://github.com/withastro/astro/issues",
"exports": {
".": "./dist/index.js",
"./middleware": "./dist/middleware.js",
"./endpoint": "./dist/endpoint.js",
"./client-script": "./dist/client-script.js",
"./db-config": "./dist/db-config.js"
},
"files": [
"dist"
],
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"dev": "astro-scripts dev \"src/**/*.ts\"",
"test": "astro-scripts test --timeout 50000 \"test/**/*.test.js\""
},
"dependencies": {
"web-vitals": "^3.5.2"
},
"peerDependencies": {
"@astrojs/db": "^0.11.0"
},
"devDependencies": {
"@astrojs/db": "workspace:*",
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"linkedom": "^0.16.11"
},
"publishConfig": {
"provenance": true
}
}