-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.12 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
{
"name": "aws-search-extension",
"version": "1.0.1",
"description": "A search-extension for quick, fuzzy-search results for AWS developers!",
"author": "Pit Kleyersburg <[email protected]",
"license": "Apache-2.0/MIT",
"dependencies": {
"fuzzy-search": "3.2.1",
"webextension-polyfill": "0.10.0"
},
"devDependencies": {
"ajv-cli": "5.0.0",
"eslint": "^8.56.0",
"vendor-copy": "3.0.1",
"web-ext": "7.9.0"
},
"scripts": {
"postinstall": "vendor-copy",
"prebuild": "hack/generate-index-cfn.py && hack/generate-index-api.py && hack/generate-index-cli.py",
"build": "web-ext build --source-dir=extension/ --no-input=true --overwrite-dest=true",
"build:firefox": "make firefox && npm run build",
"build:chrome": "make chrome && npm run build"
},
"vendorCopy": [
{
"from": "node_modules/fuzzy-search/dist/FuzzySearch.js",
"to": "extension/vendored/fuzzy-search/FuzzySearch.js"
},
{
"from": "node_modules/webextension-polyfill/dist/browser-polyfill.min.js",
"to": "extension/vendored/webextension-polyfill/browser-polyfill.min.js"
}
]
}