-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.72 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
45
46
47
48
49
{
"name": "history-cleaner",
"version": "1.7.0",
"description": "Firefox addon that deletes history older than a specified amount of days.",
"main": "index.js",
"scripts": {
"build:ff:watch": "webpack --config webpack.config.js --mode=development --watch",
"build:ff:prod": "webpack --config webpack.config.js --mode=production",
"build:cr:watch": "webpack --config webpack.chrome.config.js --mode=development --watch",
"build:cr:prod": "webpack --config webpack.chrome.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",
"lint:eslint": "eslint src --ext .ts",
"lint:typescript": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rayquaza01/HistoryCleaner.git"
},
"author": "Joe Jarvis",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rayquaza01/HistoryCleaner/issues"
},
"homepage": "https://github.com/Rayquaza01/HistoryCleaner#readme",
"devDependencies": {
"@types/webextension-polyfill": "^0.12.1",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^8.57.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"web-ext": "^8.3.0",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"webextension-polyfill": "^0.12.0"
}
}