bfc934635cdd5db3fe29628cc807fd34d5ad4d97b6f6f1547102dc9e1227e25a133b739c481c78dca983ec5780bc0e33954181d5652f9c374d672dec199f21 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "yallist",
  3. "version": "5.0.0",
  4. "description": "Yet Another Linked List",
  5. "files": [
  6. "dist"
  7. ],
  8. "devDependencies": {
  9. "prettier": "^3.2.5",
  10. "tap": "^18.7.2",
  11. "tshy": "^1.13.1",
  12. "typedoc": "^0.25.13"
  13. },
  14. "scripts": {
  15. "preversion": "npm test",
  16. "postversion": "npm publish",
  17. "prepublishOnly": "git push origin --follow-tags",
  18. "prepare": "tshy",
  19. "pretest": "npm run prepare",
  20. "presnap": "npm run prepare",
  21. "test": "tap",
  22. "snap": "tap",
  23. "format": "prettier --write . --loglevel warn --ignore-path ../../.prettierignore --cache",
  24. "typedoc": "typedoc"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "git+https://github.com/isaacs/yallist.git"
  29. },
  30. "author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
  31. "license": "BlueOak-1.0.0",
  32. "tshy": {
  33. "exports": {
  34. "./package.json": "./package.json",
  35. ".": "./src/index.ts"
  36. }
  37. },
  38. "exports": {
  39. "./package.json": "./package.json",
  40. ".": {
  41. "import": {
  42. "types": "./dist/esm/index.d.ts",
  43. "default": "./dist/esm/index.js"
  44. },
  45. "require": {
  46. "types": "./dist/commonjs/index.d.ts",
  47. "default": "./dist/commonjs/index.js"
  48. }
  49. }
  50. },
  51. "main": "./dist/commonjs/index.js",
  52. "types": "./dist/commonjs/index.d.ts",
  53. "type": "module",
  54. "prettier": {
  55. "semi": false,
  56. "printWidth": 70,
  57. "tabWidth": 2,
  58. "useTabs": false,
  59. "singleQuote": true,
  60. "jsxSingleQuote": false,
  61. "bracketSameLine": true,
  62. "arrowParens": "avoid",
  63. "endOfLine": "lf"
  64. },
  65. "engines": {
  66. "node": ">=18"
  67. }
  68. }