package.json — astro Source File
Architecture documentation for package.json, a json file in the astro codebase.
Entity Profile
Source Code
{
"name": "@astrojs/vercel",
"description": "Deploy your site to Vercel",
"version": "10.0.0-beta.3",
"type": "module",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/astro.git",
"directory": "packages/integrations/vercel"
},
"keywords": [
"withastro",
"astro-adapter"
],
"bugs": "https://github.com/withastro/astro/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/vercel/",
"exports": {
".": "./dist/index.js",
"./entrypoint": "./dist/serverless/entrypoint.js",
"./serverless/entrypoint": "./dist/serverless/entrypoint.js",
"./build-image-service": "./dist/image/build-service.js",
"./dev-image-service": "./dist/image/dev-service.js",
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"serverless": [
"dist/serverless/adapter.d.ts"
],
"static": [
"dist/static/adapter.d.ts"
]
}
},
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"dev": "astro-scripts dev \"src/**/*.ts\"",
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
"build:ci": "astro-scripts build \"src/**/*.ts\"",
"test": "astro-scripts test --timeout 60000 \"test/**/!(hosted).test.js\"",
"test:hosted": "astro-scripts test --timeout 30000 \"test/hosted/*.test.js\""
},
"dependencies": {
"@astrojs/internal-helpers": "workspace:*",
"@vercel/analytics": "^1.6.1",
"@vercel/functions": "^3.4.0",
"@vercel/nft": "^1.3.0",
"@vercel/routing-utils": "^5.3.2",
"esbuild": "^0.25.0",
"tinyglobby": "^0.2.15"
},
"peerDependencies": {
"astro": "^6.0.0-alpha.0"
},
"devDependencies": {
"astro": "workspace:*",
"astro-scripts": "workspace:*",
"cheerio": "1.2.0",
"vite": "^7.3.1"
},
"publishConfig": {
"provenance": true
}
}
Source
Frequently Asked Questions
What does package.json do?
package.json is a source file in the astro codebase, written in json.
Where is package.json in the architecture?
package.json is located at packages/integrations/vercel/package.json (directory: packages/integrations/vercel).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free