web-see-monitor
Version:
前端监控 SDK,包含性能监控、错误监控和用户行为监控
47 lines • 1.41 kB
JSON
{
"name": "web-see-monitor",
"version": "1.0.0",
"description": "前端监控 SDK,包含性能监控、错误监控和用户行为监控",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && rollup -c",
"dev": "rollup -c -w",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"example": "node --experimental-specifier-resolution=node --loader ts-node/esm example/server.ts",
"start": "npm run build && npm run example"
},
"keywords": ["monitor", "performance", "error-tracking", "behavior-tracking"],
"author": "",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.0",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"rimraf": "^5.0.0",
"rollup": "^3.20.0",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}