-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.26 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
{
"name": "searchengineswitcher",
"version": "2.1.1",
"description": "Helps you switch between search engines quickly and easily.",
"private": true,
"repository": "https://github.com/StasJS/SearchEngineSwitcher.git",
"author": "StasJS",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"scripts": {
"dev:chrome": "cross-env TARGET_BROWSER=chrome vite build --config vite.config.ts --mode development --watch",
"dev:firefox": "cross-env TARGET_BROWSER=firefox vite build --config vite.config.ts --mode development --watch",
"build:chrome": "cross-env TARGET_BROWSER=chrome vite build --config vite.config.ts",
"build:firefox": "cross-env TARGET_BROWSER=firefox vite build --config vite.config.ts",
"build": "npm run build:chrome && npm run build:firefox",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"advanced-css-reset": "^2.1.3",
"grommet": "^2.38.0",
"grommet-icons": "^4.12.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"styled-components": "^5.3.11",
"webextension-polyfill": "^0.12.0"
},
"devDependencies": {
"@abhijithvijayan/eslint-config": "^3.0.1",
"@abhijithvijayan/tsconfig": "^1.5.1",
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/styled-components": "^5.1.34",
"@types/webextension-polyfill": "^0.12.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.1",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-checker": "^0.12.0",
"vite-plugin-clean": "^2.0.1",
"vite-plugin-wext-manifest": "^1.2.2",
"vite-plugin-zip-pack": "^1.2.4"
}
}