Layout scaffolding for Web apps.
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.
 
 
 

83 lines
2.0 KiB

  1. {
  2. "name": "@tesseract-design/viewfinder-react",
  3. "version": "0.0.1",
  4. "files": [
  5. "dist",
  6. "src"
  7. ],
  8. "engines": {
  9. "node": ">=10"
  10. },
  11. "license": "MIT",
  12. "keywords": [
  13. "pridepack"
  14. ],
  15. "dependencies": {
  16. "@tesseract-design/viewfinder-base": "workspace:*",
  17. "clsx": "^2.0.0"
  18. },
  19. "devDependencies": {
  20. "@testing-library/jest-dom": "^5.16.4",
  21. "@testing-library/react": "^13.3.0",
  22. "@testing-library/react-hooks": "^8.0.1",
  23. "@types/node": "^18.0.0",
  24. "@types/react": "^18.0.14",
  25. "eslint": "^8.20.0",
  26. "eslint-config-lxsmnsyc": "^0.4.7",
  27. "jsdom": "^20.0.0",
  28. "pridepack": "2.4.4",
  29. "react": "^18.2.0",
  30. "react-dom": "^18.2.0",
  31. "react-test-renderer": "^18.2.0",
  32. "tslib": "^2.4.0",
  33. "typescript": "^4.7.4",
  34. "vitest": "^0.19.1"
  35. },
  36. "peerDependencies": {
  37. "react": "^16.8 || ^17.0 || ^18.0",
  38. "react-dom": "^16.8 || ^17.0 || ^18.0"
  39. },
  40. "scripts": {
  41. "prepublishOnly": "pridepack clean && pridepack build",
  42. "build": "pridepack build",
  43. "type-check": "pridepack check",
  44. "lint": "pridepack lint",
  45. "clean": "pridepack clean",
  46. "watch": "pridepack watch",
  47. "start": "pridepack start",
  48. "dev": "pridepack dev",
  49. "test": "vitest"
  50. },
  51. "private": false,
  52. "description": "View scaffolding for React",
  53. "repository": {
  54. "url": "",
  55. "type": "git"
  56. },
  57. "homepage": "",
  58. "bugs": {
  59. "url": ""
  60. },
  61. "author": "TheoryOfNekomata <allan.crisostomo@outlook.com>",
  62. "publishConfig": {
  63. "access": "public"
  64. },
  65. "types": "./dist/types/index.d.ts",
  66. "exports": {
  67. ".": {
  68. "development": {
  69. "require": "./dist/cjs/development/index.js",
  70. "import": "./dist/esm/development/index.js"
  71. },
  72. "require": "./dist/cjs/production/index.js",
  73. "import": "./dist/esm/production/index.js",
  74. "types": "./dist/types/index.d.ts"
  75. }
  76. },
  77. "typesVersions": {
  78. "*": {}
  79. },
  80. "main": "./dist/cjs/production/index.js",
  81. "module": "./dist/esm/production/index.js"
  82. }