astro/packages/integrations/vercel/package.json
github-actions[bot] 2552db0d09
[ci] release (#2975)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-04-03 23:25:00 -07:00

33 lines
879 B
JSON

{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "0.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/vercel"
},
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://astro.build",
"exports": {
".": "./dist/index.js",
"./server-entrypoint": "./dist/server-entrypoint.js",
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@astrojs/webapi": "^0.11.0",
"esbuild": "0.14.25"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*"
}
}