-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "bee",
"version": "3.2.1",
"description": "Allows to edit form text fields with an external editor",
"scripts": {
"build": "rm -rf dist && npx webpack --mode=production --config webpack.config.js",
"build-dev": "npx webpack --mode=development --config webpack.config.js",
"pack-firefox": "./package.sh $npm_package_version firefox",
"pack-chrome": "./package.sh $npm_package_version chrome"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/rosmanov/chrome-bee.git"
},
"keywords": [
"chrome",
"firefox",
"extension",
"addon",
"external",
"editor"
],
"author": "Ruslan Osmanov <608192+rosmanov@users.noreply.github.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rosmanov/chrome-bee/issues"
},
"homepage": "https://github.com/rosmanov/chrome-bee#readme",
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"source-map-loader": "^4.0.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.0.1"
}
}