UUID as a buffer.
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.
 
 

108 lines
2.9 KiB

  1. {
  2. "name": "@theoryofnekomata/uuid-buffer",
  3. "version": "0.1.0",
  4. "types": "dist/types/index.d.ts",
  5. "main": "dist/cjs/production/index.js",
  6. "module": "dist/esm/production/index.js",
  7. "publishing": {
  8. "github": {
  9. "repository": "https://github.com/TheoryOfNekomata/uuid-buffer.git",
  10. "publishConfig": {
  11. "registry": "https://npm.pkg.github.com"
  12. }
  13. },
  14. "master": {
  15. "repository": "https://code.modal.sh/TheoryOfNekomata/uuid-buffer.git",
  16. "publishConfig": {
  17. "registry": "https://js.pack.modal.sh"
  18. }
  19. },
  20. "npm": {
  21. "publishConfig": {
  22. "registry": "https://registry.npmjs.com"
  23. }
  24. }
  25. },
  26. "exports": {
  27. ".": {
  28. "development": {
  29. "require": "./dist/cjs/development/index.js",
  30. "import": "./dist/esm/development/index.js"
  31. },
  32. "require": "./dist/cjs/production/index.js",
  33. "import": "./dist/esm/production/index.js",
  34. "types": "./dist/types/index.d.ts"
  35. },
  36. "./dev": {
  37. "production": {
  38. "require": "./dist/cjs/production/index.js",
  39. "import": "./dist/esm/production/index.js"
  40. },
  41. "require": "./dist/cjs/development/index.js",
  42. "import": "./dist/esm/development/index.js",
  43. "types": "./dist/types/index.d.ts"
  44. },
  45. "./esm": {
  46. "development": "./dist/esm/development/index.js",
  47. "production": "./dist/esm/production/index.js",
  48. "default": "./dist/esm/production/index.js",
  49. "types": "./dist/types/index.d.ts"
  50. },
  51. "./cjs": {
  52. "development": "./dist/cjs/development/index.js",
  53. "production": "./dist/cjs/production/index.js",
  54. "default": "./dist/cjs/production/index.js",
  55. "types": "./dist/types/index.d.ts"
  56. }
  57. },
  58. "files": [
  59. "dist",
  60. "src"
  61. ],
  62. "engines": {
  63. "node": ">=10"
  64. },
  65. "license": "MIT",
  66. "keywords": [
  67. "pridepack"
  68. ],
  69. "devDependencies": {
  70. "@types/node": "^17.0.25",
  71. "eslint": "^8.13.0",
  72. "eslint-config-lxsmnsyc": "^0.4.0",
  73. "pridepack": "1.1.1",
  74. "tslib": "^2.4.0",
  75. "typescript": "^4.6.3",
  76. "vitest": "^0.9.4"
  77. },
  78. "scripts": {
  79. "prepublishOnly": "pridepack clean && pridepack build",
  80. "build": "pridepack build",
  81. "type-check": "pridepack check",
  82. "lint": "pridepack lint",
  83. "clean": "pridepack clean",
  84. "watch": "pridepack watch",
  85. "start": "pridepack start",
  86. "dev": "pridepack dev",
  87. "test": "vitest"
  88. },
  89. "private": false,
  90. "description": "UUID as a buffer.",
  91. "repository": {
  92. "url": "https://code.modal.sh/TheoryOfNekomata/uuid-buffer",
  93. "type": "git"
  94. },
  95. "homepage": "https://code.modal.sh/TheoryOfNekomata/uuid-buffer",
  96. "bugs": {
  97. "url": "https://code.modal.sh/TheoryOfNekomata/uuid-buffer/issues"
  98. },
  99. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  100. "publishConfig": {
  101. "access": "public"
  102. },
  103. "dependencies": {
  104. "@types/uuid": "^8.3.4",
  105. "uuid": "^8.3.2"
  106. }
  107. }