|
@@ -0,0 +1,66 @@
|
|
|
|
+{
|
|
|
|
+ "name": "zw_monitor",
|
|
|
|
+ "private": true,
|
|
|
|
+ "version": "0.0.0",
|
|
|
|
+ "type": "module",
|
|
|
|
+ "files": [
|
|
|
|
+ "dist",
|
|
|
|
+ "index.d.ts"
|
|
|
|
+ ],
|
|
|
|
+ "main": "./dist/index.umd.cjs",
|
|
|
|
+ "module": "./dist/index.js",
|
|
|
|
+ "types": "./index.d.ts",
|
|
|
|
+ "exports": {
|
|
|
|
+ "types": "./index.d.ts",
|
|
|
|
+ "import": "./dist/index.js",
|
|
|
|
+ "require": "./dist/index.umd.cjs"
|
|
|
|
+ },
|
|
|
|
+ "scripts": {
|
|
|
|
+ "dev": "vite",
|
|
|
|
+ "build": "tsc && vite build",
|
|
|
|
+ "prepare": "husky install",
|
|
|
|
+ "commit": "git-cz",
|
|
|
|
+ "lint": "prettier --write"
|
|
|
|
+ },
|
|
|
|
+ "dependencies": {
|
|
|
|
+ "core-js": "^3.19.1",
|
|
|
|
+ "error-stack-parser": "^2.1.4",
|
|
|
|
+ "js-base64": "^3.7.3",
|
|
|
|
+ "pako": "^2.1.0",
|
|
|
|
+ "path-to-regexp": "^6.2.0",
|
|
|
|
+ "rrweb": "^1.1.3",
|
|
|
|
+ "tslib": "^2.4.1",
|
|
|
|
+ "ua-parser-js": "^1.0.32",
|
|
|
|
+ "web-vitals": "^3.1.0"
|
|
|
|
+ },
|
|
|
|
+ "devDependencies": {
|
|
|
|
+ "@commitlint/cli": "^17.3.0",
|
|
|
|
+ "@commitlint/config-conventional": "^17.3.0",
|
|
|
|
+ "@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
|
|
+ "@typescript-eslint/parser": "^5.46.1",
|
|
|
|
+ "commitizen": "^4.2.6",
|
|
|
|
+ "cz-conventional-changelog": "^3.3.0",
|
|
|
|
+ "eslint": "^8.29.0",
|
|
|
|
+ "eslint-plugin-prettier": "^4.2.1",
|
|
|
|
+ "husky": "^8.0.2",
|
|
|
|
+ "lint-staged": "^13.1.0",
|
|
|
|
+ "prettier": "^2.8.0",
|
|
|
|
+ "typescript": "^4.9.4",
|
|
|
|
+ "vite": "^4.0.4"
|
|
|
|
+ },
|
|
|
|
+ "lint-staged": {
|
|
|
|
+ "**/*.{ts,tsx,json}": [
|
|
|
|
+ "prettier --write",
|
|
|
|
+ "eslint --fix"
|
|
|
|
+ ]
|
|
|
|
+ },
|
|
|
|
+ "repository": {
|
|
|
|
+ "type": "git",
|
|
|
|
+ "url": "git@github.com:xy-sea/web-see.git"
|
|
|
|
+ },
|
|
|
|
+ "config": {
|
|
|
|
+ "commitizen": {
|
|
|
|
+ "path": "./node_modules/cz-conventional-changelog"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|