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.

96 lines
2.5 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. "eslint": "^8.8.0",
  57. "eslint-config-lxsmnsyc": "^0.4.0",
  58. "fast-check": "^2.24.0",
  59. "pridepack": "1.1.0",
  60. "tslib": "^2.3.1",
  61. "typescript": "^4.5.4",
  62. "vitest": "^0.2.5"
  63. },
  64. "scripts": {
  65. "prepublishOnly": "pridepack clean && pridepack build",
  66. "build": "pridepack build",
  67. "type-check": "pridepack check",
  68. "lint": "pridepack lint",
  69. "clean": "pridepack clean",
  70. "watch": "pridepack watch",
  71. "start": "pridepack start",
  72. "dev": "pridepack dev",
  73. "test": "vitest"
  74. },
  75. "private": false,
  76. "description": "Utility for map projections.",
  77. "repository": {
  78. "url": "https://code.modal.sh/modal-soft/orbis-core",
  79. "type": "git"
  80. },
  81. "homepage": "",
  82. "bugs": {
  83. "url": "https://code.modal.sh/modal-soft/orbis-core/issues"
  84. },
  85. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  86. "publishConfig": {
  87. "access": "public"
  88. },
  89. "dependencies": {
  90. "d3": "^7.4.3",
  91. "d3-geo": "^3.0.1",
  92. "d3-geo-polygon": "^1.12.1",
  93. "d3-geo-projection": "^4.0.0"
  94. }
  95. }