package.json 868 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@benchmark/timer",
  3. "description": "Preview server for benchmark",
  4. "private": true,
  5. "version": "0.0.0",
  6. "type": "module",
  7. "types": "./dist/index.d.ts",
  8. "author": "withastro",
  9. "license": "MIT",
  10. "keywords": [
  11. "withastro",
  12. "astro-adapter"
  13. ],
  14. "exports": {
  15. ".": "./dist/index.js",
  16. "./server.js": "./dist/server.js",
  17. "./preview.js": "./dist/preview.js",
  18. "./package.json": "./package.json"
  19. },
  20. "scripts": {
  21. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  22. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  23. "dev": "astro-scripts dev \"src/**/*.ts\""
  24. },
  25. "dependencies": {
  26. "server-destroy": "^1.0.1"
  27. },
  28. "peerDependencies": {
  29. "astro": "workspace:*"
  30. },
  31. "devDependencies": {
  32. "@types/server-destroy": "^1.0.3",
  33. "astro": "workspace:*",
  34. "astro-scripts": "workspace:*"
  35. }
  36. }