Scheduled service maintenance on November 22


On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.

We apologize for any inconvenience.

package.json 736 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@mapbox/tiny-sdf",
  3. "version": "1.2.5",
  4. "description": "Browser-side SDF font generator",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "eslint index.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/mapbox/tiny-sdf.git"
  12. },
  13. "keywords": [
  14. "sdf",
  15. "signed distance fields",
  16. "font",
  17. "canvas",
  18. "text",
  19. "distance transform"
  20. ],
  21. "author": "Vladimir Agafonkin",
  22. "license": "BSD-2-Clause",
  23. "bugs": {
  24. "url": "https://github.com/mapbox/tiny-sdf/issues"
  25. },
  26. "homepage": "https://github.com/mapbox/tiny-sdf#readme",
  27. "devDependencies": {
  28. "eslint": "^7.0.0",
  29. "eslint-config-mourner": "^2.0.1"
  30. },
  31. "eslintConfig": {
  32. "extends": "mourner"
  33. }
  34. }