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.
 
 
 

80 lines
1.8 KiB

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