package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "@astrojs/node",
  3. "description": "Deploy your site to a Node.js server",
  4. "version": "8.2.0",
  5. "type": "module",
  6. "types": "./dist/index.d.ts",
  7. "author": "withastro",
  8. "license": "MIT",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/withastro/astro.git",
  12. "directory": "packages/integrations/node"
  13. },
  14. "keywords": [
  15. "withastro",
  16. "astro-adapter"
  17. ],
  18. "bugs": "https://github.com/withastro/astro/issues",
  19. "homepage": "https://docs.astro.build/en/guides/integrations-guide/node/",
  20. "exports": {
  21. ".": "./dist/index.js",
  22. "./server.js": "./dist/server.js",
  23. "./preview.js": "./dist/preview.js",
  24. "./package.json": "./package.json"
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  31. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  32. "dev": "astro-scripts dev \"src/**/*.ts\"",
  33. "test": "astro-scripts test \"test/**/*.test.js\""
  34. },
  35. "dependencies": {
  36. "send": "^0.18.0",
  37. "server-destroy": "^1.0.1"
  38. },
  39. "peerDependencies": {
  40. "astro": "^4.2.0"
  41. },
  42. "devDependencies": {
  43. "@types/node": "^18.17.8",
  44. "@types/send": "^0.17.4",
  45. "@types/server-destroy": "^1.0.3",
  46. "astro": "workspace:*",
  47. "astro-scripts": "workspace:*",
  48. "cheerio": "1.0.0-rc.12",
  49. "express": "^4.18.2",
  50. "node-mocks-http": "^1.13.0"
  51. },
  52. "publishConfig": {
  53. "provenance": true
  54. }
  55. }