package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "zw_monitor",
  3. "private": true,
  4. "version": "0.0.0",
  5. "type": "module",
  6. "files": [
  7. "dist",
  8. "index.d.ts"
  9. ],
  10. "main": "./dist/index.umd.cjs",
  11. "module": "./dist/index.js",
  12. "types": "./index.d.ts",
  13. "exports": {
  14. "types": "./index.d.ts",
  15. "import": "./dist/index.js",
  16. "require": "./dist/index.umd.cjs"
  17. },
  18. "scripts": {
  19. "dev": "vite",
  20. "build": "tsc && vite build",
  21. "prepare": "husky install",
  22. "commit": "git-cz",
  23. "lint": "prettier --write"
  24. },
  25. "dependencies": {
  26. "core-js": "^3.19.1",
  27. "error-stack-parser": "^2.1.4",
  28. "js-base64": "^3.7.3",
  29. "pako": "^2.1.0",
  30. "path-to-regexp": "^6.2.0",
  31. "rrweb": "^1.1.3",
  32. "tslib": "^2.4.1",
  33. "ua-parser-js": "^1.0.32",
  34. "web-vitals": "^3.1.0"
  35. },
  36. "devDependencies": {
  37. "@commitlint/cli": "^17.3.0",
  38. "@commitlint/config-conventional": "^17.3.0",
  39. "@typescript-eslint/eslint-plugin": "^5.46.1",
  40. "@typescript-eslint/parser": "^5.46.1",
  41. "commitizen": "^4.2.6",
  42. "cz-conventional-changelog": "^3.3.0",
  43. "eslint": "^8.29.0",
  44. "eslint-plugin-prettier": "^4.2.1",
  45. "husky": "^8.0.2",
  46. "lint-staged": "^13.1.0",
  47. "prettier": "^2.8.0",
  48. "typescript": "^4.9.4",
  49. "vite": "^4.0.4"
  50. },
  51. "lint-staged": {
  52. "**/*.{ts,tsx,json}": [
  53. "prettier --write",
  54. "eslint --fix"
  55. ]
  56. },
  57. "repository": {
  58. "type": "git",
  59. "url": "git@github.com:xy-sea/web-see.git"
  60. },
  61. "config": {
  62. "commitizen": {
  63. "path": "./node_modules/cz-conventional-changelog"
  64. }
  65. }
  66. }