astro/packages/integrations/vercel/package.json

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

38 lines
1.1 KiB
JSON
Raw Normal View History

2022-03-28 13:05:55 +00:00
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "0.1.4",
2022-03-28 13:05:55 +00:00
"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": {
"./edge": "./dist/edge/adapter.js",
"./edge/entrypoint": "./dist/edge/entrypoint.js",
"./serverless": "./dist/serverless/adapter.js",
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
"./static": "./dist/serverless/adapter.js",
2022-03-28 13:05:55 +00:00
"./package.json": "./package.json"
},
"scripts": {
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
2022-03-28 13:05:55 +00:00
"dev": "astro-scripts dev \"src/**/*.ts\""
},
"dependencies": {
"@astrojs/webapi": "^0.11.1",
"@vercel/nft": "^0.18.2"
2022-03-28 13:05:55 +00:00
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*"
}
}