forked from DIYgod/RSSHub-Radar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.46 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "rsshub-radar",
"version": "0.0.1",
"description": "Browser extension to detect available RSS and RSSHub for current page",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack -w --mode=production --progress",
"build": "webpack --mode=production --progress",
"release": "npm run build && mkdir release && zip -r release/radar.zip dist",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,scss,less}\" --write",
"format:staged": "eslint \"**/*.js\" --fix && pretty-quick --staged --verbose --pattern \"**/*.{js,scss,less}\"",
"format:check": "eslint \"**/*.js\" && prettier-check \"**/*.{js,scss,less}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DIYgod/RSSHub-Radar.git"
},
"keywords": [
"rsshub",
"rss"
],
"gitHooks": {
"pre-commit": "npm run format:staged"
},
"author": "DIYgod",
"license": "MIT",
"bugs": {
"url": "https://github.com/DIYgod/RSSHub-Radar/issues"
},
"homepage": "https://github.com/DIYgod/RSSHub-Radar#readme",
"devDependencies": {
"@babel/core": "7.19.6",
"@babel/preset-env": "7.19.4",
"autoprefixer": "10.4.12",
"babel-loader": "8.2.5",
"babel-plugin-component": "1.1.1",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.1",
"cssnano": "5.1.13",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-loader": "4.0.2",
"eslint-plugin-prettier": "4.2.1",
"file-loader": "6.2.0",
"less": "4.1.3",
"less-loader": "11.1.0",
"mini-css-extract-plugin": "2.6.1",
"node-sass": "^7.0.3",
"postcss-loader": "7.0.1",
"prettier": "2.7.1",
"prettier-check": "2.0.0",
"pretty-quick": "3.1.3",
"sass-loader": "13.1.0",
"svg-inline-loader": "0.8.2",
"template-string-optimize-loader": "3.0.0",
"url-loader": "4.1.1",
"vue": "2.6.14",
"vue-loader": "15.9.8",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "2.6.14",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"yorkie": "2.0.0"
},
"dependencies": {
"buffer": "^6.0.3",
"clipboard": "2.0.11",
"element-ui": "2.15.10",
"https-browserify": "^1.0.0",
"i18n-js": "^4.0.0-alpha.14",
"md5.js": "^1.3.5",
"psl": "1.9.0",
"route-recognizer": "0.3.4",
"rss-parser": "3.12.0",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"timers-browserify": "^2.0.12",
"url": "^0.11.0",
"vue-router": "3.5.2"
}
}