2022-03-24 06:26:25 -05:00
|
|
|
{
|
|
|
|
"name": "@astrojs/node",
|
|
|
|
"description": "Deploy your site to a Node.js server",
|
2023-11-16 08:50:47 -05:00
|
|
|
"version": "6.0.4",
|
2022-03-24 06:26:25 -05: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/node"
|
|
|
|
},
|
2022-07-08 15:57:10 -05:00
|
|
|
"keywords": [
|
2022-08-30 15:19:19 -05:00
|
|
|
"withastro",
|
2022-07-08 15:57:10 -05:00
|
|
|
"astro-adapter"
|
|
|
|
],
|
2022-03-24 06:26:25 -05:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 14:10:34 -05:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/node/",
|
2022-03-24 06:26:25 -05:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./server.js": "./dist/server.js",
|
2022-10-12 16:25:51 -05:00
|
|
|
"./preview.js": "./dist/preview.js",
|
2022-03-24 06:26:25 -05:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 03:54:00 -05:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-03-24 06:26:25 -05:00
|
|
|
"scripts": {
|
|
|
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|
2022-04-13 12:31:50 -05:00
|
|
|
"build:ci": "astro-scripts build \"src/**/*.ts\"",
|
2022-07-22 14:22:31 -05:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --exit --timeout 20000 test/"
|
2022-03-24 06:26:25 -05:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-02-02 19:10:16 -05:00
|
|
|
"send": "^0.18.0",
|
|
|
|
"server-destroy": "^1.0.1"
|
2022-03-24 06:26:25 -05:00
|
|
|
},
|
2022-11-07 10:05:12 -05:00
|
|
|
"peerDependencies": {
|
2023-10-26 05:07:02 -05:00
|
|
|
"astro": "^3.0.0"
|
2022-11-07 10:05:12 -05:00
|
|
|
},
|
2022-03-24 06:26:25 -05:00
|
|
|
"devDependencies": {
|
2023-08-24 03:34:33 -05:00
|
|
|
"@types/node": "^18.17.8",
|
2022-10-12 16:25:51 -05:00
|
|
|
"@types/send": "^0.17.1",
|
2023-02-02 19:10:16 -05:00
|
|
|
"@types/server-destroy": "^1.0.1",
|
2022-03-24 06:26:25 -05:00
|
|
|
"astro": "workspace:*",
|
2022-07-22 14:22:31 -05:00
|
|
|
"astro-scripts": "workspace:*",
|
2023-06-21 08:09:49 -05:00
|
|
|
"chai": "^4.3.7",
|
|
|
|
"cheerio": "1.0.0-rc.12",
|
2023-08-23 06:52:13 -05:00
|
|
|
"express": "^4.18.2",
|
2023-08-24 03:34:33 -05:00
|
|
|
"mocha": "^10.2.0",
|
2023-10-04 05:28:36 -05:00
|
|
|
"node-mocks-http": "^1.13.0"
|
2023-10-03 09:25:25 -05:00
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"provenance": true
|
2022-03-24 06:26:25 -05:00
|
|
|
}
|
|
|
|
}
|