summaryrefslogtreecommitdiff
path: root/benchmark/packages/timer/package.json
blob: 7e3e2065bc0449f6e6bfde02caa50291885564bc (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
{
  "name": "@benchmark/timer",
  "description": "Preview server for benchmark",
  "private": true,
  "version": "0.0.0",
  "type": "module",
  "types": "./dist/index.d.ts",
  "author": "withastro",
  "license": "MIT",
  "keywords": [
    "withastro",
    "astro-adapter"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./server.js": "./dist/server.js",
    "./preview.js": "./dist/preview.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\""
  },
  "dependencies": {
    "server-destroy": "^1.0.1"
  },
  "peerDependencies": {
    "astro": "workspace:*"
  },
  "devDependencies": {
    "@types/server-destroy": "^1.0.4",
    "astro": "workspace:*",
    "astro-scripts": "workspace:*"
  }
}