-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.11 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.11 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
{
"name": "Imageshare Browser Extension",
"version": "1.0.0",
"description": "Imageshare Search: Searches imageshare keywords for matches with users current site content. Notifies user of matches and opens Imageshare, in a net window, to results view",
"browserslist": [
"> 1%",
"not dead"
],
"main": "index.js",
"scripts": {
"dev-firefox": "./node_modules/.bin/webpack --env build_target=firefox",
"dev-chrome-mv2": "./node_modules/.bin/webpack --env build_target=chrome-mv2",
"dev-chrome-mv3": "./node_modules/.bin/webpack --env build_target=chrome-mv3",
"dev-safari": "./node_modules/.bin/webpack --env build_target=safari",
"build-firefox": "./node_modules/.bin/webpack --env build_target=firefox --env environment=production",
"build-chrome-mv2": "./node_modules/.bin/webpack --env build_target=chrome-mv2 --env environment=production",
"build-chrome-mv3": "./node_modules/.bin/webpack --env build_target=chrome-mv3 --env environment=production",
"build-safari": "./node_modules/.bin/webpack --env build_target=safari --env environment=production",
"build-all": "npm run build-firefox && npm run build-chrome-mv2 && npm run build-chrome-mv3 && npm run build-safari",
"test": "echo \"Error: no test specified\" && exit 1",
"zip": "zip -r chrome-extension.zip .\\dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benetech/Imageshare-Extensions.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/benetech/Imageshare-Extensions/issues"
},
"homepage": "https://github.com/benetech/Imageshare-Extensions#readme",
"devDependencies": {
"autoprefixer": "^10.2.0",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^5.2.4",
"html-loader": "^2.1.2",
"html-webpack-plugin": "^5.3.1",
"postcss-import": "^14.0.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.25.0",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"crx-hotreload": "^1.0.6",
"findandreplacedomtext": "^0.4.6",
"jquery": "^3.6.0",
"sass": "^1.32.8"
}
}