-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
94 lines (94 loc) · 2.42 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
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
93
94
{
"name": "custombangsearch",
"version": "0.10.6",
"description": "A browser extension to use custom DuckDuckGo-like bangs directly from the address bar",
"main": "",
"scripts": {
"test": "",
"lint": "npx eslint ./src/ --cache",
"tsc-noemit": "npx tsc -noEmit",
"build-firefox": "node ./bob.mjs -d -b firefox",
"build-firefox-release": "node ./bob.mjs -z -s -b firefox",
"build-chrome": "node ./bob.mjs -d -b chrome",
"build-chrome-release": "node ./bob.mjs -z -s -b chrome"
},
"repository": {
"type": "git",
"url": "git+https://github.com/psidex/CustomBangSearch.git"
},
"keywords": [
"chrome",
"firefox",
"extension",
"addon",
"browser-extension",
"web-extension",
"chrome-extension",
"firefox-extension",
"firefox-addon",
"search",
"custom-search",
"duckduckgo",
"bang",
"bangs"
],
"author": "psidex",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/psidex/CustomBangSearch/issues"
},
"homepage": "https://github.com/psidex/CustomBangSearch#readme",
"eslintConfig": {
"env": {
"browser": true,
"webextensions": true
},
"extends": [
"airbnb",
"airbnb/hooks",
"airbnb-typescript"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"no-restricted-syntax": "off"
},
"ignorePatterns": [
"src/**/*.js",
"src/**/*.jsx"
]
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"framer-motion": "^11.0.8",
"lz-string": "^1.5.0",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/webextension-polyfill": "^0.10.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"listr2": "^8.0.2",
"typescript": "^5.3.3"
}
}