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.

60 lines
1.7 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.6",
2022-03-28 10:05:55 -03:00
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
2024-08-29 09:39:46 +02:00
"url": "https://github.com/withastro/adapters.git",
"directory": "packages/vercel"
2022-03-28 10:05:55 -03:00
},
2024-09-17 07:56:08 +02:00
"keywords": ["withastro", "astro-adapter"],
2024-08-29 09:39:46 +02:00
"bugs": "https://github.com/withastro/adapters/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": {
"*": {
2024-09-17 07:56:08 +02:00
"serverless": ["dist/serverless/adapter.d.ts"],
"static": ["dist/static/adapter.d.ts"]
}
},
2024-09-17 07:56:08 +02:00
"files": ["dist", "types.d.ts"],
2022-03-28 10:05:55 -03:00
"scripts": {
2024-08-29 07:56:05 +02:00
"build": "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": {
"@astrojs/internal-helpers": "^0.4.2",
"@vercel/analytics": "^1.4.1",
"@vercel/edge": "^1.2.1",
"@vercel/nft": "^0.29.0",
"@vercel/routing-utils": "5.0.2",
2024-10-31 16:48:02 +08:00
"esbuild": "^0.24.0",
"fast-glob": "^3.3.3"
2022-03-28 10:05:55 -03:00
},
"peerDependencies": {
"astro": "^5.0.0"
},
2022-03-28 10:05:55 -03:00
"devDependencies": {
2024-08-29 08:47:15 +02:00
"@astrojs/test-utils": "workspace:*",
"astro": "^5.1.6",
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
}
}