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.
 
 
 

90 line
2.2 KiB

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