package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "@astrojs/telemetry",
  3. "version": "3.0.4",
  4. "type": "module",
  5. "types": "./dist/index.d.ts",
  6. "author": "withastro",
  7. "license": "MIT",
  8. "repository": {
  9. "type": "git",
  10. "url": "https://github.com/withastro/astro.git",
  11. "directory": "packages/telemetry"
  12. },
  13. "bugs": "https://github.com/withastro/astro/issues",
  14. "homepage": "https://astro.build",
  15. "exports": {
  16. ".": {
  17. "types": "./dist/index.d.ts",
  18. "default": "./dist/index.js"
  19. },
  20. "./package.json": "./package.json"
  21. },
  22. "scripts": {
  23. "build": "astro-scripts build \"src/**/*.ts\" && tsc",
  24. "build:ci": "astro-scripts build \"src/**/*.ts\"",
  25. "dev": "astro-scripts dev \"src/**/*.ts\"",
  26. "test": "astro-scripts test \"test/**/*.test.js\""
  27. },
  28. "files": [
  29. "dist"
  30. ],
  31. "dependencies": {
  32. "ci-info": "^4.0.0",
  33. "debug": "^4.3.4",
  34. "dlv": "^1.1.3",
  35. "dset": "^3.1.3",
  36. "is-docker": "^3.0.0",
  37. "is-wsl": "^3.0.0",
  38. "which-pm-runs": "^1.1.0"
  39. },
  40. "devDependencies": {
  41. "@types/debug": "^4.1.12",
  42. "@types/dlv": "^1.1.4",
  43. "@types/node": "^18.17.8",
  44. "@types/which-pm-runs": "^1.0.2",
  45. "astro-scripts": "workspace:*"
  46. },
  47. "engines": {
  48. "node": ">=18.14.1"
  49. },
  50. "publishConfig": {
  51. "provenance": true
  52. }
  53. }