package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "pvutils",
  3. "version": "1.2.0",
  4. "description": "Common utilities for products from Peculiar Ventures",
  5. "license": "MIT",
  6. "author": {
  7. "name": "Yury Strozhevsky",
  8. "email": "yury@strozhevsky.com"
  9. },
  10. "contributors": [
  11. {
  12. "email": "rmh@unmitigatedrisk.com",
  13. "name": "Ryan Hurst"
  14. },
  15. {
  16. "email": "microshine@mail.ru",
  17. "name": "Miroshin Stepan"
  18. }
  19. ],
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/PeculiarVentures/pvutils"
  23. },
  24. "files": [
  25. "build",
  26. "README.md",
  27. "LICENSE"
  28. ],
  29. "main": "./build/utils.js",
  30. "module": "./build/utils.es.js",
  31. "types": "./build/index.d.ts",
  32. "scripts": {
  33. "prepare": "npm run build",
  34. "test": "vitest run",
  35. "lint": "oxlint",
  36. "lint:fix": "oxlint --fix",
  37. "format": "oxfmt",
  38. "format:check": "oxfmt --check",
  39. "build": "rollup -c",
  40. "coverage": "vitest run --coverage"
  41. },
  42. "devDependencies": {
  43. "@types/node": "^26.1.2",
  44. "@vitest/coverage-v8": "^4.1.10",
  45. "oxfmt": "^0.61.0",
  46. "oxlint": "^1.76.0",
  47. "rollup": "^4.62.3",
  48. "rollup-plugin-dts": "^6.4.1",
  49. "rollup-plugin-typescript2": "^0.37.0",
  50. "typescript": "^6.0.3",
  51. "vitest": "^4.1.10"
  52. },
  53. "devEngines": {
  54. "packageManager": {
  55. "name": "npm",
  56. "version": ">=10",
  57. "onFail": "error"
  58. }
  59. },
  60. "engines": {
  61. "node": ">=16.0.0"
  62. }
  63. }