-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
package.json
47 lines (47 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
{
"name": "@rrweb/web-extension",
"private": true,
"version": "2.0.0-alpha.17",
"description": "The web extension of rrweb which helps to run rrweb on any website out of box",
"author": "rrweb-io",
"license": "MIT",
"type": "module",
"scripts": {
"dev:chrome": "cross-env TARGET_BROWSER=chrome vite dev",
"dev:firefox": "cross-env TARGET_BROWSER=firefox vite dev",
"build:chrome": "cross-env TARGET_BROWSER=chrome vite build",
"build:firefox": "cross-env TARGET_BROWSER=firefox vite build",
"pack:chrome": "cross-env TARGET_BROWSER=chrome ZIP=true vite build",
"pack:firefox": "cross-env TARGET_BROWSER=firefox ZIP=true vite build",
"check-types": "tsc -noEmit",
"build": "npm run pack:chrome && npm run pack:firefox",
"prepublish": "yarn build"
},
"devDependencies": {
"@rrweb/types": "^2.0.0-alpha.17",
"@types/react-dom": "^18.0.6",
"@types/webextension-polyfill": "^0.9.1",
"@vitejs/plugin-react": "^4.2.1",
"type-fest": "^2.19.0",
"vite": "^5.3.1",
"vite-plugin-web-extension": "^4.1.3",
"vite-plugin-zip-pack": "^1.2.2",
"webextension-polyfill": "^0.10.0"
},
"dependencies": {
"@chakra-ui/react": "^2.3.4",
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@tanstack/react-table": "^8.5.22",
"framer-motion": "^7.3.6",
"idb": "^7.1.1",
"mitt": "^3.0.0",
"nanoid": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-router-dom": "^6.4.1",
"rrweb": "^2.0.0-alpha.17",
"rrweb-player": "^2.0.0-alpha.17"
}
}