-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
61
62
63
64
65
66
67
68
{
"name": "webcare",
"version": "1.2.2",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rmdir /s /q dist",
"dev": "modern dev",
"watch": "modern build -w",
"build": "modern build",
"change": "modern change",
"bump": "modern bump",
"release": "modern release",
"prepublishOnly": "npm run build",
"dev:rollup": " rollup -c -w",
"build:rollup": "npm run clean & rollup -c",
"watch:rollup": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,scss -x yarn run build && yalc push"
},
"sideEffects": false,
"dependencies": {
"@types/lodash-es": "^4.17.10",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"js-baase64": "^3.7.5",
"query-string": "^9.0.0",
"rollup-plugin-web-worker-loader": "^1.6.1",
"rrweb": "^2.0.0-alpha.4",
"web-vitals": "^3.5.2"
},
"devDependencies": {
"@types/crypto-js": "^4.2.2",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@fingerprintjs/fingerprintjs": "^3.3.6",
"@modern-js/module-tools": "^2.48.4",
"@modern-js/plugin-rspress": "1.18.2",
"@rollup/plugin-alias": "^4.0.2",
"@rollup/plugin-typescript": "^10.0.1",
"@types/fingerprintjs": "^0.5.28",
"@types/react": "^18.0.33",
"@types/uuid": "^9.0.1",
"eslint": "^8.30.0",
"eslint-plugin-prettier": "^4.2.1",
"lodash-es": "^4.17.21",
"prettier": "^2.8.1",
"rollup": "^3.7.5",
"rollup-plugin-alias": "^2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"react": "^18.3.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"types": "./dist/types/index.d.ts",
"main": "./dist/es/index.js",
"files": [
"dist"
]
}