-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "chrome-tab-recorder",
"version": "1.0.7",
"description": "Google Chrome Extensions Screen Recorder",
"scripts": {
"build": "webpack --mode=production",
"archive": "rm extension.zip && zip -r extension.zip extension",
"watch": "webpack --mode=development -w",
"lint": "eslint {src,*.{mjs,ts}}",
"test": "jest"
},
"repository": {
"type": "git",
"url": "github.com/ww24/chrome-tab-recorder"
},
"homepage": "https://recorder.appcloud.info/",
"author": "ww24",
"license": "MIT",
"dependencies": {
"@material/web": "^2.2.0",
"@sentry/browser": "^8.36.0",
"buffer": "^6.0.3",
"lit": "^3.2.1",
"ts-ebml": "^3.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/chrome": "^0.0.287",
"@types/dotenv-webpack": "^7.0.8",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.4",
"@types/webpack": "^5.28.5",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.17.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"private": true,
"engines": {
"node": ">=22.0.0"
}
}