-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·92 lines (92 loc) · 3.04 KB
/
package.json
File metadata and controls
executable file
·92 lines (92 loc) · 3.04 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "screenity",
"version": "4.3.0",
"description": "The free and privacy-friendly screen recorder with no sign in needed.",
"scripts": {
"build": "cross-env NODE_ENV=production node utils/build.js",
"start": "cross-env NODE_ENV=development node utils/server.js",
"dev": "npm run hot-reload",
"watch": "cross-env NODE_ENV=development webpack --watch",
"hot-reload": "cross-env NODE_ENV=development webpack serve --hot",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"postinstall": "patch-package && node scripts/patch-radix.js",
"package": "npm run build && cd build && zip -r ../extension.zip . && cd ..",
"clean": "rm -rf build && mkdir build",
"lint": "eslint src/**/*.js --fix"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@mediapipe/tasks-vision": "0.10.32",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-select": "^1.2.1",
"@radix-ui/react-slider": "^1.1.2",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.3",
"@radix-ui/react-toast": "^1.2.13",
"@radix-ui/react-toggle": "^1.1.8",
"@radix-ui/react-toggle-group": "^1.1.9",
"@radix-ui/react-toolbar": "^1.1.9",
"@radix-ui/react-tooltip": "^1.2.6",
"@sentry/browser": "^7.94.1",
"@uiw/color-convert": "^1.2.2",
"@uiw/react-color-wheel": "^1.2.2",
"axios": "^1.6.2",
"concurrently": "^8.2.0",
"dotenv": "^17.0.1",
"driver.js": "^1.3.6",
"fabric": "^5.3.0",
"fix-webm-duration": "^1.0.5",
"gif.js": "^0.2.0",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"mediabunny": "^1.24.4",
"patch-package": "^8.0.0",
"plyr": "3.7.8",
"plyr-react": "^5.3.0",
"querystring": "^0.2.1",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-advanced-cropper": "^0.19.4",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.4.1",
"react-rnd": "^10.4.1",
"react-shadow": "^20.0.0",
"react-svg": "^16.1.18",
"ssestream": "^1.1.0",
"tar": "7.5.9",
"wavesurfer.js": "^7.4.2",
"webm-duration-fix": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.27.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.27.1",
"@types/react": "^18.3.21",
"@types/react-dom": "^18.3.7",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^7.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.2",
"fs-extra": "^10.1.0",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.7.1",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.11.1"
},
"overrides": {
"tar": "7.5.9",
"minimatch": "10.2.2"
}
}