-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.25 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
{
"name": "github-directory-downloader",
"version": "1.0.3",
"description": "Browser extension to download any GitHub folder, directory, or file as a ZIP archive.",
"license": "MIT",
"author": "lenadweb",
"repository": {
"type": "git",
"url": "https://github.com/lenadweb/github-downloader.git"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=20.9"
},
"scripts": {
"dev": "webpack --env development --watch",
"bump": "node bumpVersion.js",
"build": "webpack --env platform=chrome",
"build:chrome": "node bumpVersion.js && webpack --env platform=chrome",
"build:opera": "node bumpVersion.js && webpack --env platform=opera",
"lint": "eslint --ext js,ts,tsx .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"test": "jest --passWithNoTests"
},
"dependencies": {
"jszip": "^3.10.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.4.1",
"react-toastify": "^11.0.3",
"typescript": "^4.8.4"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@types/chrome": "^0.0.290",
"@types/node": "^20.17.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^7.1.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.13.0",
"file-loader": "^6.2.0",
"jest": "^27.0.0",
"less": "^4.2.1",
"less-loader": "^12.2.0",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^2.8.8",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.17",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^27.0.0",
"ts-loader": "^9.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"url-loader": "^4.1.1",
"webpack": "^5.73.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^5.8.0",
"zip-webpack-plugin": "^4.0.3"
}
}