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.
 
 
 

60 lines
1.2 KiB

  1. {
  2. "version": "0.1.0",
  3. "license": "MIT",
  4. "main": "dist/index.js",
  5. "typings": "dist/index.d.ts",
  6. "files": [
  7. "dist",
  8. "src"
  9. ],
  10. "engines": {
  11. "node": ">=10"
  12. },
  13. "scripts": {
  14. "start": "tsdx watch",
  15. "build": "tsdx build",
  16. "test": "tsdx test --passWithNoTests",
  17. "lint": "tsdx lint",
  18. "prepare": "tsdx build",
  19. "size": "size-limit",
  20. "analyze": "size-limit --why"
  21. },
  22. "peerDependencies": {
  23. "react": ">=16",
  24. "styled-components": "~5.2.3"
  25. },
  26. "husky": {
  27. "hooks": {
  28. "pre-commit": "tsdx lint"
  29. }
  30. },
  31. "name": "@tesseract-design/viewfinder",
  32. "description": "Layout scaffolding for Web apps.",
  33. "author": "TheoryOfNekomata",
  34. "module": "dist/starter.esm.js",
  35. "size-limit": [
  36. {
  37. "path": "dist/starter.cjs.production.min.js",
  38. "limit": "10 KB"
  39. },
  40. {
  41. "path": "dist/starter.esm.js",
  42. "limit": "10 KB"
  43. }
  44. ],
  45. "devDependencies": {
  46. "@size-limit/preset-small-lib": "^4.10.2",
  47. "@types/react": "^17.0.3",
  48. "@types/react-dom": "^17.0.3",
  49. "@types/styled-components": "^5.1.9",
  50. "husky": "^6.0.0",
  51. "react": "^17.0.2",
  52. "react-dom": "^17.0.2",
  53. "size-limit": "^4.10.2",
  54. "tsdx": "^0.14.1",
  55. "tslib": "^2.2.0",
  56. "typescript": "^4.2.4",
  57. "styled-components": "^5.2.3"
  58. }
  59. }