package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "get-tsconfig",
  3. "version": "4.7.2",
  4. "description": "Find and parse the tsconfig.json file from a directory path",
  5. "keywords": [
  6. "get-tsconfig",
  7. "get",
  8. "typescript",
  9. "tsconfig",
  10. "tsconfig.json"
  11. ],
  12. "license": "MIT",
  13. "repository": "privatenumber/get-tsconfig",
  14. "funding": "https://github.com/privatenumber/get-tsconfig?sponsor=1",
  15. "author": {
  16. "name": "Hiroki Osame",
  17. "email": "hiroki.osame@gmail.com"
  18. },
  19. "type": "module",
  20. "files": [
  21. "dist"
  22. ],
  23. "main": "./dist/index.cjs",
  24. "module": "./dist/index.mjs",
  25. "types": "./dist/index.d.cts",
  26. "exports": {
  27. "require": {
  28. "types": "./dist/index.d.cts",
  29. "default": "./dist/index.cjs"
  30. },
  31. "import": {
  32. "types": "./dist/index.d.mts",
  33. "default": "./dist/index.mjs"
  34. }
  35. },
  36. "imports": {
  37. "#get-tsconfig": {
  38. "types": "./src/index.ts",
  39. "development": "./src/index.ts",
  40. "default": "./dist/index.mjs"
  41. }
  42. },
  43. "dependencies": {
  44. "resolve-pkg-maps": "^1.0.0"
  45. }
  46. }