Utilities for map projections.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
2.6 KiB

  1. {
  2. "name": "@theoryofnekomata/orbis-core",
  3. "version": "0.0.0",
  4. "types": "dist/types/index.d.ts",
  5. "main": "dist/cjs/production/index.js",
  6. "module": "dist/esm/production/index.js",
  7. "exports": {
  8. ".": {
  9. "development": {
  10. "require": "./dist/cjs/development/index.js",
  11. "import": "./dist/esm/development/index.js"
  12. },
  13. "require": "./dist/cjs/production/index.js",
  14. "import": "./dist/esm/production/index.js",
  15. "types": "./dist/types/index.d.ts"
  16. },
  17. "./dev": {
  18. "production": {
  19. "require": "./dist/cjs/production/index.js",
  20. "import": "./dist/esm/production/index.js"
  21. },
  22. "require": "./dist/cjs/development/index.js",
  23. "import": "./dist/esm/development/index.js",
  24. "types": "./dist/types/index.d.ts"
  25. },
  26. "./esm": {
  27. "development": "./dist/esm/development/index.js",
  28. "production": "./dist/esm/production/index.js",
  29. "default": "./dist/esm/production/index.js",
  30. "types": "./dist/types/index.d.ts"
  31. },
  32. "./cjs": {
  33. "development": "./dist/cjs/development/index.js",
  34. "production": "./dist/cjs/production/index.js",
  35. "default": "./dist/cjs/production/index.js",
  36. "types": "./dist/types/index.d.ts"
  37. }
  38. },
  39. "files": [
  40. "dist",
  41. "src"
  42. ],
  43. "engines": {
  44. "node": ">=10"
  45. },
  46. "license": "MIT",
  47. "keywords": [
  48. "pridepack",
  49. "map",
  50. "projection"
  51. ],
  52. "devDependencies": {
  53. "@types/d3": "^7.1.0",
  54. "@types/d3-geo": "^3.0.2",
  55. "@types/node": "^17.0.13",
  56. "@types/pngjs": "^6.0.1",
  57. "@types/sharp": "^0.30.1",
  58. "eslint": "^8.8.0",
  59. "eslint-config-lxsmnsyc": "^0.4.0",
  60. "fast-check": "^2.24.0",
  61. "pridepack": "1.1.0",
  62. "tslib": "^2.3.1",
  63. "typescript": "^4.5.4",
  64. "vitest": "^0.2.5"
  65. },
  66. "scripts": {
  67. "prepublishOnly": "pridepack clean && pridepack build",
  68. "build": "pridepack build",
  69. "type-check": "pridepack check",
  70. "lint": "pridepack lint",
  71. "clean": "pridepack clean",
  72. "watch": "pridepack watch",
  73. "start": "pridepack start",
  74. "dev": "pridepack dev",
  75. "test": "vitest"
  76. },
  77. "private": false,
  78. "description": "Utility for map projections.",
  79. "repository": {
  80. "url": "https://code.modal.sh/modal-soft/orbis-core",
  81. "type": "git"
  82. },
  83. "homepage": "",
  84. "bugs": {
  85. "url": "https://code.modal.sh/modal-soft/orbis-core/issues"
  86. },
  87. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  88. "publishConfig": {
  89. "access": "public"
  90. },
  91. "dependencies": {
  92. "d3": "^7.4.3",
  93. "d3-geo": "^3.0.1",
  94. "d3-geo-polygon": "^1.12.1",
  95. "d3-geo-projection": "^4.0.0",
  96. "pngjs": "^6.0.0",
  97. "sharp": "^0.30.3"
  98. }
  99. }