0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00
astro/benchmark/packages/timer/package.json

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

37 lines
868 B
JSON
Raw Normal View History

2023-03-06 09:55:44 -05:00
{
"name": "@benchmark/timer",
2023-03-06 09:55:44 -05:00
"description": "Preview server for benchmark",
"private": true,
"version": "0.0.0",
2023-03-06 09:55:44 -05:00
"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": {
2023-10-26 05:07:02 -05:00
"astro": "workspace:*"
2023-03-06 09:55:44 -05:00
},
"devDependencies": {
"@types/server-destroy": "^1.0.4",
2023-03-06 09:55:44 -05:00
"astro": "workspace:*",
"astro-scripts": "workspace:*"
}
}