版博士V2.0程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

package.json 2.1 KiB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "brilliant-errors",
  3. "version": "0.7.3",
  4. "description": "A set of configurators to help your Apps and Libraries build brilliant error classes",
  5. "keywords": [
  6. "error-management"
  7. ],
  8. "homepage": "https://github.com/inocan-group/brilliant-errors#readme",
  9. "bugs": {
  10. "url": "https://github.com/inocan-group/brilliant-errors/issues"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/inocan-group/brilliant-errors.git"
  15. },
  16. "license": "MIT",
  17. "author": "Ken Snyder <ken@ken.net>",
  18. "module": "./dist/index.js",
  19. "typings": "./dist/index.d.ts",
  20. "type": "module",
  21. "exports": {
  22. ".": {
  23. "import": "./dist/index.js"
  24. }
  25. },
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "build": "npx tsup src/index.ts --format=esm --dts --clean",
  31. "latest": "yarn do latest -v",
  32. "lint": "run-s lint:*",
  33. "lint:src": "eslint src/**/*.ts",
  34. "lint:test": "eslint test/**/*.ts",
  35. "lint:tsc": "tsc --noEmit",
  36. "audit:fix": "pnpm audit --fix",
  37. "test": "vitest",
  38. "test:ci": "vitest run",
  39. "watch": "run-p watch:*",
  40. "watch:ai": "npx dd autoindex --watch",
  41. "watch:tsup": "npx tsup src/index.ts --format=esm --dts --watch",
  42. "release": "run-s build lint test:ci release:latest audit:fix release:bump",
  43. "release:latest": "pnpm install",
  44. "release:bump": "bumpp",
  45. "prepublishOnly": "npm run build"
  46. },
  47. "devDependencies": {
  48. "@type-challenges/utils": "^0.1.1",
  49. "@types/node": "^14.18.34",
  50. "@typescript-eslint/eslint-plugin": "^5.46.0",
  51. "@typescript-eslint/parser": "^5.46.0",
  52. "eslint": "^8.29.0",
  53. "eslint-config-prettier": "^8.5.0",
  54. "eslint-plugin-import": "^2.26.0",
  55. "eslint-plugin-prettier": "^4.2.1",
  56. "eslint-plugin-promise": "^6.1.1",
  57. "eslint-plugin-unicorn": "^45.0.1",
  58. "npm-run-all": "^4.1.5",
  59. "pathe": "^1.0.0",
  60. "prettier": "^2.8.1",
  61. "tsup": "^6.5.0",
  62. "typescript": "^4.9.4",
  63. "vite": "^3.2.5"
  64. },
  65. "dependencies": {
  66. "bumpp": "^8.2.1",
  67. "callsites": "^4.0.0",
  68. "inferred-types": "^0.37.2",
  69. "vitest": "^0.25.6"
  70. },
  71. "engines": {
  72. "node": ">=14.0.0"
  73. }
  74. }