Design system.
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.
 
 
 

86 lines
2.0 KiB

  1. {
  2. "name": "@tesseract-design/web-color-react",
  3. "version": "0.0.0",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=12"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "devDependencies": {
  16. "@testing-library/jest-dom": "^5.16.5",
  17. "@testing-library/react": "^13.4.0",
  18. "@types/color": "^3.0.3",
  19. "@types/color-convert": "^2.0.0",
  20. "@types/node": "^18.14.1",
  21. "@types/react": "^18.0.27",
  22. "eslint": "^8.35.0",
  23. "eslint-config-lxsmnsyc": "^0.5.0",
  24. "jsdom": "^21.1.0",
  25. "pridepack": "2.4.4",
  26. "react": "^18.2.0",
  27. "react-dom": "^18.2.0",
  28. "react-test-renderer": "^18.2.0",
  29. "tslib": "^2.5.0",
  30. "typescript": "^4.9.5",
  31. "vitest": "^0.28.1"
  32. },
  33. "peerDependencies": {
  34. "react": "^16.8 || ^17.0 || ^18.0",
  35. "react-dom": "^16.8 || ^17.0 || ^18.0"
  36. },
  37. "scripts": {
  38. "prepublishOnly": "pridepack clean && pridepack build",
  39. "build": "pridepack build",
  40. "type-check": "pridepack check",
  41. "lint": "pridepack lint",
  42. "clean": "pridepack clean",
  43. "watch": "pridepack watch",
  44. "start": "pridepack start",
  45. "dev": "pridepack dev",
  46. "test": "vitest"
  47. },
  48. "private": false,
  49. "description": "Tesseract components for inputting color data.",
  50. "repository": {
  51. "url": "",
  52. "type": "git"
  53. },
  54. "homepage": "",
  55. "bugs": {
  56. "url": ""
  57. },
  58. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  59. "publishConfig": {
  60. "access": "public"
  61. },
  62. "dependencies": {
  63. "clsx": "^1.2.1",
  64. "color": "^4.2.3",
  65. "color-convert": "^2.0.1",
  66. "tailwindcss": "3.3.2"
  67. },
  68. "types": "./dist/types/index.d.ts",
  69. "main": "./dist/cjs/production/index.js",
  70. "module": "./dist/esm/production/index.js",
  71. "exports": {
  72. ".": {
  73. "development": {
  74. "require": "./dist/cjs/development/index.js",
  75. "import": "./dist/esm/development/index.js"
  76. },
  77. "require": "./dist/cjs/production/index.js",
  78. "import": "./dist/esm/production/index.js",
  79. "types": "./dist/types/index.d.ts"
  80. }
  81. },
  82. "typesVersions": {
  83. "*": {}
  84. }
  85. }