-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.23 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.23 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
{
"name": "bee",
"version": "3.4.4",
"description": "Allows to edit form text fields with an external editor",
"scripts": {
"build": "rm -rf dist && npx webpack --mode=production --config webpack.config.mjs",
"build-dev": "npx webpack --mode=development --config webpack.config.mjs",
"pack-firefox": "./package.sh $npm_package_version firefox",
"pack-chrome": "./package.sh $npm_package_version chrome",
"test": "node --experimental-vm-modules node_modules/.bin/jest"
},
"private": true,
"type": "module",
"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",
"jest": "^29.7.0",
"source-map-loader": "^4.0.1",
"web-ext": "^10.1.0",
"webpack": "^5.105.0",
"webpack-cli": "^5.0.1"
}
}