package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "error-stack-parser-es",
  3. "type": "module",
  4. "version": "0.1.5",
  5. "packageManager": "pnpm@9.5.0",
  6. "description": "Cross-browser Error parser",
  7. "maintainers": [
  8. "Anthony Fu <anthonyfu117@hotmail.com> (https://antfu.me)",
  9. "Eric Wendelin <me@eriwen.com> (https://www.eriwen.com)",
  10. "Victor Homyakov <vkhomyackov@gmail.com> (https://github.com/victor-homyakov)",
  11. "Oliver Salzburg (https://github.com/oliversalzburg)",
  12. "Ben Gourley (https://github.com/bengourley)"
  13. ],
  14. "license": "MIT",
  15. "funding": "https://github.com/sponsors/antfu",
  16. "homepage": "https://github.com/antfu/error-stack-parser-es#readme",
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/antfu/error-stack-parser-es.git"
  20. },
  21. "bugs": "https://github.com/antfu/error-stack-parser-es/issues",
  22. "keywords": [],
  23. "sideEffects": false,
  24. "exports": {
  25. ".": {
  26. "types": "./dist/index.d.ts",
  27. "import": "./dist/index.mjs",
  28. "require": "./dist/index.cjs"
  29. },
  30. "./lite": {
  31. "types": "./dist/lite.d.ts",
  32. "import": "./dist/lite.mjs",
  33. "require": "./dist/lite.cjs"
  34. }
  35. },
  36. "main": "./dist/index.mjs",
  37. "module": "./dist/index.mjs",
  38. "types": "./dist/index.d.ts",
  39. "typesVersions": {
  40. "*": {
  41. "*": [
  42. "./dist/*",
  43. "./dist/index.d.ts"
  44. ]
  45. }
  46. },
  47. "files": [
  48. "dist"
  49. ],
  50. "scripts": {
  51. "build": "unbuild",
  52. "dev": "unbuild --stub",
  53. "lint": "eslint .",
  54. "prepublishOnly": "nr build",
  55. "release": "bumpp && npm publish",
  56. "start": "esno src/index.ts",
  57. "test": "vitest",
  58. "typecheck": "tsc --noEmit"
  59. },
  60. "devDependencies": {
  61. "@antfu/eslint-config": "^2.22.4",
  62. "@antfu/ni": "^0.22.0",
  63. "@antfu/utils": "^0.7.10",
  64. "@types/node": "^20.14.11",
  65. "bumpp": "^9.4.1",
  66. "eslint": "^9.7.0",
  67. "esno": "^4.7.0",
  68. "lint-staged": "^15.2.7",
  69. "pnpm": "^9.5.0",
  70. "rimraf": "^6.0.1",
  71. "simple-git-hooks": "^2.11.1",
  72. "typescript": "^5.5.3",
  73. "unbuild": "^2.0.0",
  74. "vite": "^5.3.4",
  75. "vitest": "^2.0.3"
  76. },
  77. "simple-git-hooks": {
  78. "pre-commit": "pnpm lint-staged"
  79. },
  80. "lint-staged": {
  81. "*": "eslint --fix"
  82. }
  83. }