0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-10 23:01:26 -05:00
astro/packages/integrations/node/package.json
github-actions[bot] 5293995eba [ci] release (#507)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2025-01-22 14:24:45 +00:00

49 lines
1.3 KiB
JSON

{
"name": "@astrojs/node",
"description": "Deploy your site to a Node.js server",
"version": "9.0.2",
"type": "module",
"types": "./dist/index.d.ts",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/adapters.git",
"directory": "packages/node"
},
"keywords": ["withastro", "astro-adapter"],
"bugs": "https://github.com/withastro/adapters/issues",
"homepage": "https://docs.astro.build/en/guides/integrations-guide/node/",
"exports": {
".": "./dist/index.js",
"./server.js": "./dist/server.js",
"./preview.js": "./dist/preview.js",
"./package.json": "./package.json"
},
"files": ["dist"],
"scripts": {
"build": "tsc",
"test": "astro-scripts test \"test/**/*.test.js\""
},
"dependencies": {
"send": "^1.1.0",
"server-destroy": "^1.0.1"
},
"peerDependencies": {
"astro": "^5.0.0"
},
"devDependencies": {
"@astrojs/test-utils": "workspace:*",
"@types/node": "^22.10.6",
"@types/send": "^0.17.4",
"@types/server-destroy": "^1.0.4",
"astro": "^5.1.6",
"astro-scripts": "workspace:*",
"cheerio": "1.0.0",
"express": "^4.21.2",
"node-mocks-http": "^1.16.2"
},
"publishConfig": {
"provenance": true
}
}