package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "cookie",
  3. "version": "1.1.1",
  4. "description": "HTTP server cookie parsing and serialization",
  5. "keywords": [
  6. "cookie",
  7. "cookies"
  8. ],
  9. "repository": "jshttp/cookie",
  10. "funding": {
  11. "type": "opencollective",
  12. "url": "https://opencollective.com/express"
  13. },
  14. "license": "MIT",
  15. "author": "Roman Shtylman <shtylman@gmail.com>",
  16. "contributors": [
  17. "Douglas Christopher Wilson <doug@somethingdoug.com>"
  18. ],
  19. "sideEffects": false,
  20. "main": "dist/index.js",
  21. "types": "dist/index.d.ts",
  22. "files": [
  23. "dist/"
  24. ],
  25. "scripts": {
  26. "bench": "vitest bench",
  27. "build": "ts-scripts build",
  28. "format": "ts-scripts format",
  29. "prepare": "ts-scripts install",
  30. "prepublishOnly": "npm run build",
  31. "specs": "ts-scripts specs",
  32. "test": "ts-scripts test"
  33. },
  34. "devDependencies": {
  35. "@borderless/ts-scripts": "^0.15.0",
  36. "@vitest/coverage-v8": "^3.2.4",
  37. "top-sites": "1.1.194",
  38. "typescript": "^5.6.2",
  39. "vitest": "^3.2.4"
  40. },
  41. "engines": {
  42. "node": ">=18"
  43. },
  44. "ts-scripts": {
  45. "project": "tsconfig.build.json"
  46. }
  47. }