0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/integrations/vercel/package.json

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

69 lines
1.8 KiB
JSON
Raw Normal View History

2022-03-28 10:05:55 -03:00
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "8.0.8",
2022-03-28 10:05:55 -03:00
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
2025-02-07 13:00:06 +00:00
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/vercel"
2022-03-28 10:05:55 -03:00
},
2025-02-07 08:48:46 +00:00
"keywords": [
"withastro",
"astro-adapter"
],
2025-02-07 13:00:06 +00:00
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
2022-03-28 10:05:55 -03:00
"exports": {
".": "./dist/index.js",
"./entrypoint": "./dist/serverless/entrypoint.js",
"./serverless": "./dist/serverless/adapter.js",
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
"./static": "./dist/static/adapter.js",
"./build-image-service": "./dist/image/build-service.js",
"./dev-image-service": "./dist/image/dev-service.js",
2022-03-28 10:05:55 -03:00
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
2025-02-07 08:48:46 +00:00
"serverless": [
"dist/serverless/adapter.d.ts"
],
"static": [
"dist/static/adapter.d.ts"
]
}
},
2025-02-07 08:48:46 +00:00
"files": [
"dist",
"types.d.ts"
],
2022-03-28 10:05:55 -03:00
"scripts": {
2025-02-06 15:38:30 +00:00
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"test": "astro-scripts test --timeout 50000 \"test/**/!(hosted).test.js\"",
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
2022-03-28 10:05:55 -03:00
},
"dependencies": {
2025-02-24 13:23:56 +00:00
"@astrojs/internal-helpers": "workspace:*",
"@vercel/analytics": "^1.4.1",
"@vercel/edge": "^1.2.1",
"@vercel/nft": "^0.29.0",
"@vercel/routing-utils": "^5.0.4",
"esbuild": "^0.25.0",
"tinyglobby": "^0.2.12"
2022-03-28 10:05:55 -03:00
},
"peerDependencies": {
"astro": "^5.0.0"
},
2022-03-28 10:05:55 -03:00
"devDependencies": {
2025-02-06 15:38:30 +00:00
"astro": "workspace:*",
2022-09-28 23:13:33 +08:00
"astro-scripts": "workspace:*",
"cheerio": "1.0.0"
},
"publishConfig": {
"provenance": true
2022-03-28 10:05:55 -03:00
}
}