-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
60 lines (60 loc) · 1.57 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@huolala-tech/page-spy-plugin-rrweb",
"version": "2.0.0",
"description": "Record the DOM mutation within PageSpy.",
"homepage": "https://github.com/HuolalaTech/page-spy/tree/main/packages/page-spy-plugin-rrweb",
"license": "MIT",
"main": "dist/iife/index.min.js",
"module": "dist/esm/index.min.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HuolalaTech/page-spy.git"
},
"bugs": {
"url": "https://github.com/HuolalaTech/page-spy/issues"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w"
},
"dependencies": {
"@babel/runtime": "^7.13.0",
"@huolala-tech/page-spy-base": "^2.0.0",
"@huolala-tech/page-spy-types": "^2.0.0",
"rrweb": "^2.0.0-alpha.4"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"core-js": "3.30",
"rollup": "^3.10.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.34.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
},
"browserslist": [
"chrome > 75",
"safari > 12",
"> 0.1%",
"not dead",
"not op_mini all"
]
}