2022-03-24 07:26:25 -04:00
|
|
|
{
|
|
|
|
"name": "@astrojs/node",
|
|
|
|
"description": "Deploy your site to a Node.js server",
|
2023-05-18 09:31:59 -07:00
|
|
|
"version": "5.1.4",
|
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-01 07:58:03 -07:00
|
|
|
"@astrojs/webapi": "^2.1.1",
|
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-05-22 12:16:13 -07:00
|
|
|
"astro": "workspace:^2.5.3"
|
2022-11-07 10:05:12 -05:00
|
|
|
},
|
2022-03-24 07:26:25 -04:00
|
|
|
"devDependencies": {
|
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:*",
|
2022-09-28 23:13:33 +08:00
|
|
|
"chai": "^4.3.6",
|
2023-01-11 00:59:20 +08:00
|
|
|
"cheerio": "^1.0.0-rc.11",
|
2022-09-28 23:13:33 +08:00
|
|
|
"mocha": "^9.2.2",
|
2023-01-09 22:59:20 +01:00
|
|
|
"node-mocks-http": "^1.11.0",
|
2023-04-28 21:13:49 +08:00
|
|
|
"undici": "^5.22.0"
|
2022-03-24 07:26:25 -04:00
|
|
|
}
|
|
|
|
}
|