Design system.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

86 行
2.1 KiB

  1. {
  2. "name": "@tesseract-design/web-freeform-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. "@testing-library/user-event": "^14.4.3",
  19. "@types/node": "^20.4.7",
  20. "@types/react": "^18.2.18",
  21. "@types/testing-library__jest-dom": "^5.14.9",
  22. "@vitest/coverage-v8": "^0.33.0",
  23. "eslint": "^8.46.0",
  24. "eslint-config-lxsmnsyc": "^0.5.0",
  25. "jsdom": "^21.1.0",
  26. "pridepack": "2.4.4",
  27. "react": "^18.2.0",
  28. "react-dom": "^18.2.0",
  29. "react-test-renderer": "^18.2.0",
  30. "tslib": "^2.5.0",
  31. "typescript": "^5.1.6",
  32. "vitest": "^0.34.1"
  33. },
  34. "peerDependencies": {
  35. "react": "^16.8 || ^17.0 || ^18.0",
  36. "react-dom": "^16.8 || ^17.0 || ^18.0"
  37. },
  38. "scripts": {
  39. "prepublishOnly": "pridepack clean && pridepack build",
  40. "build": "pridepack build",
  41. "type-check": "pridepack check",
  42. "lint": "pridepack lint",
  43. "clean": "pridepack clean",
  44. "watch": "pridepack watch",
  45. "start": "pridepack start",
  46. "dev": "pridepack dev",
  47. "test": "vitest"
  48. },
  49. "private": false,
  50. "description": "Tesseract components for inputting freeform data.",
  51. "repository": {
  52. "url": "",
  53. "type": "git"
  54. },
  55. "homepage": "",
  56. "bugs": {
  57. "url": ""
  58. },
  59. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  60. "publishConfig": {
  61. "access": "public"
  62. },
  63. "dependencies": {
  64. "@modal-sh/react-utils": "workspace:*",
  65. "@tesseract-design/web-base": "workspace:*",
  66. "clsx": "^1.2.1"
  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. }