-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
{
"name": "firerss",
"version": "2.2.3",
"description": "A RSS and Atom feeds scraper on the current page",
"repository": {
"type": "git",
"url": "git+https://github.com/mt190502/firerss.git"
},
"keywords": [
"rss",
"atom",
"feed",
"scraper",
"webextension",
"firefox",
"chromium"
],
"author": "Taha (mt190502)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/mt190502/firerss/issues"
},
"homepage": "https://github.com/mt190502/firerss",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/chrome": "^0.0.280",
"@types/firefox": "^0.0.34",
"@types/firefox-webext-browser": "^120.0.4",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^11.0.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^6.0.1"
},
"scripts": {
"depInstall": "pnpm install && pnpm update",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier": "prettier --config .prettierrc.json 'src/**/*.ts'",
"prettier:fix": "prettier --config .pretterrc.json 'src/**/*.ts' --write",
"build:firefox": "webpack --mode=production --config firefox/webpack.common.ts",
"start:firefox": "webpack --mode=development --config firefox/webpack.dev.ts --watch",
"build:chromium": "webpack --mode=production --config chromium/webpack.common.ts",
"start:chromium": "webpack --mode=development --config chromium/webpack.dev.ts --watch"
}
}