UNPKG

cwj_monitoring

Version:

基于 JS 适用Web端的插件,为前端项目提供【 行为、性能、异常 】监控手段

93 lines (92 loc) 2.63 kB
{ "name": "cwj_monitoring", "version": "0.1.0", "description": "基于 JS 适用Web端的插件,为前端项目提供【 行为、性能、异常 】监控手段", "repository": { "type": "git", "url": "https://github.com/cwjbjy/cwj_monitoring" }, "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" } }, "sideEffects": false, "scripts": { "dev": "rollup -c -w", "build": "rollup -c", "type-check": "tsc --noEmit", "lint": "eslint src --fix --max-warnings 0", "format": "prettier --write \"src/**/*.{ts,js,json}\"", "semantic-release": "semantic-release", "prepublishOnly": "npm run type-check && npm run build" }, "files": [ "dist/*" ], "keywords": [ "埋点", "性能", "异常", "性能采集", "异常采集", "前端埋点", "前端性能采集" ], "license": "MIT", "devDependencies": { "@babel/core": "^7.22.10", "@babel/plugin-transform-runtime": "^7.22.10", "@babel/preset-env": "^7.22.10", "@commitlint/cli": "^17.7.1", "@commitlint/config-conventional": "^17.7.0", "@eslint/js": "^9.0.0", "@rollup/plugin-alias": "^5.0.0", "@rollup/plugin-babel": "^6.0.3", "@rollup/plugin-commonjs": "^25.0.3", "@rollup/plugin-json": "^6.0.0", "@rollup/plugin-node-resolve": "^15.1.0", "@rollup/plugin-terser": "^0.4.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^12.0.2", "@semantic-release/npm": "^13.1.3", "@semantic-release/release-notes-generator": "^14.1.0", "@types/node": "^20.5.6", "@types/uuid": "^9.0.2", "esbuild": "^0.19.2", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-prettier": "^5.5.4", "globals": "^15.0.0", "husky": "^8.0.3", "lint-staged": "^14.0.1", "prettier": "^3.0.3", "rollup": "^3.27.2", "rollup-plugin-delete": "^2.0.0", "rollup-plugin-dts": "^6.1.0", "rollup-plugin-esbuild": "^5.0.0", "rollup-plugin-sourcemaps": "^0.6.3", "semantic-release": "^25.0.2", "tslib": "^2.6.1", "typescript": "^5.1.6", "typescript-eslint": "^8.0.0" }, "dependencies": { "bowser": "^2.11.0", "nanoid": "^5.1.6" }, "lint-staged": { "src/**/*.{js,ts,json}": [ "yarn run lint", "prettier --write" ] } }