2022-03-24 07:26:25 -04:00
|
|
|
{
|
|
|
|
"name": "@astrojs/node",
|
|
|
|
"description": "Deploy your site to a Node.js server",
|
2023-06-22 07:06:15 -07:00
|
|
|
"version": "5.3.0",
|
2022-03-24 07:26:25 -04: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 20:57:10 +00:00
|
|
|
"keywords": [
|
2022-08-30 20:19:19 +00:00
|
|
|
"withastro",
|
2022-07-08 20:57:10 +00:00
|
|
|
"astro-adapter"
|
|
|
|
],
|
2022-03-24 07:26:25 -04:00
|
|
|
"bugs": "https://github.com/withastro/astro/issues",
|
2022-07-11 21:10:34 +02:00
|
|
|
"homepage": "https://docs.astro.build/en/guides/integrations-guide/node/",
|
2022-03-24 07:26:25 -04:00
|
|
|
"exports": {
|
|
|
|
".": "./dist/index.js",
|
|
|
|
"./server.js": "./dist/server.js",
|
2022-10-12 17:25:51 -04:00
|
|
|
"./preview.js": "./dist/preview.js",
|
2022-03-24 07:26:25 -04:00
|
|
|
"./package.json": "./package.json"
|
|
|
|
},
|
2023-05-17 16:54:00 +08:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
2022-03-24 07:26:25 -04: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 15:22:31 -04:00
|
|
|
"dev": "astro-scripts dev \"src/**/*.ts\"",
|
|
|
|
"test": "mocha --exit --timeout 20000 test/"
|
2022-03-24 07:26:25 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-30 13:53:55 -07:00
|
|
|
"@astrojs/webapi": "^2.2.0",
|
2023-02-02 19:10:16 -05:00
|
|
|
"send": "^0.18.0",
|
|
|
|
"server-destroy": "^1.0.1"
|
2022-03-24 07:26:25 -04:00
|
|
|
},
|
2022-11-07 10:05:12 -05:00
|
|
|
"peerDependencies": {
|
2023-07-19 00:32:32 -07:00
|
|
|
"astro": "workspace:^2.8.5"
|
2022-11-07 10:05:12 -05:00
|
|
|
},
|
2022-03-24 07:26:25 -04:00
|
|
|
"devDependencies": {
|
2023-06-21 21:09:49 +08:00
|
|
|
"@types/node": "^18.16.18",
|
2022-10-12 17:25:51 -04:00
|
|
|
"@types/send": "^0.17.1",
|
2023-02-02 19:10:16 -05:00
|
|
|
"@types/server-destroy": "^1.0.1",
|
2022-03-24 07:26:25 -04:00
|
|
|
"astro": "workspace:*",
|
2022-07-22 15:22:31 -04:00
|
|
|
"astro-scripts": "workspace:*",
|
2023-06-21 21:09:49 +08:00
|
|
|
"chai": "^4.3.7",
|
|
|
|
"cheerio": "1.0.0-rc.12",
|
2022-09-28 23:13:33 +08:00
|
|
|
"mocha": "^9.2.2",
|
2023-06-21 21:09:49 +08:00
|
|
|
"node-mocks-http": "^1.12.2",
|
|
|
|
"undici": "^5.22.1"
|
2022-03-24 07:26:25 -04:00
|
|
|
}
|
|
|
|
}
|