summaryrefslogtreecommitdiff
path: root/packages/integrations/web-vitals/package.json
blob: 0c1374736c287cf2e59f42f5ceaa2ee8671a9e75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
  "name": "@astrojs/web-vitals",
  "description": "Track your website’s performance with Astro DB",
  "version": "3.0.1",
  "type": "module",
  "author": "withastro",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+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": "^4.2.4"
  },
  "peerDependencies": {
    "@astrojs/db": "^0.14.0"
  },
  "devDependencies": {
    "@astrojs/db": "workspace:*",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*",
    "linkedom": "^0.18.6"
  },
  "publishConfig": {
    "provenance": true
  }
}