forked from Rayquaza01/changelogger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "changelogger",
"version": "1.1.0",
"description": "Gets changelogs for updated addons",
"main": "index.js",
"scripts": {
"build:development": "webpack --config webpack.config.js --watch --mode=development",
"build:production": "webpack --config webpack.config.js --mode=production",
"build:extension": "web-ext build -s ./dist --overwrite-dest",
"firefox": "web-ext run -s ./dist",
"lint:extension": "web-ext lint -s ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rayquaza01/changelogger.git"
},
"author": "Joe Jarvis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rayquaza01/changelogger/issues"
},
"homepage": "https://github.com/Rayquaza01/changelogger#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.1.2",
"css-minimizer-webpack-plugin": "^1.3.0",
"eslint": "^7.22.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.18",
"typescript": "^4.2.3",
"web-ext": "^6.0.0",
"webpack": "^5.25.1",
"webpack-cli": "^4.5.0"
},
"dependencies": {
"webextension-polyfill-ts": "^0.25.0"
}
}