forked from magicoflolis/Userscript-Plus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.57 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.57 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
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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "uscript-plus-firefox",
"version": "2.0.4",
"description": "Show current site all UserJS,The easier way to install UserJs for Tampermonkey.",
"repository": "git+https://github.com/magicoflolis/Userscript-Plus.git",
"keywords": [
"userscript",
"userjs",
"tampermonkey"
],
"author": "Magic Of Lolis <[email protected]> (https://github.com/magicoflolis)",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicoflolis/Userscript-Plus/issues/new"
},
"homepage": "https://github.com/magicoflolis/Userscript-Plus",
"scripts": {
"dev:user": "webpack --progress --mode=development --config=webpackConfig/webpack.gf.config.js",
"dev:browser": "webpack --watch --progress --config=webpackConfig/webpack.config.js",
"http-server": "http-server ./dist -c5",
"build:user": "webpack --config=webpackConfig/webpack.gf.config.js",
"build:browser": "webpack --mode=production --config=webpackConfig/webpack.config.js",
"build:all": "npm run build:browser && npm run build:user"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.5",
"@babel/eslint-parser": "^7.14.7",
"@mdi/font": "^5.9.55",
"@types/babel__core": "^7.1.14",
"@types/copy-webpack-plugin": "^8.0.0",
"@types/psl": "^1.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.1.0",
"eslint-plugin-html": "^6.1.1",
"standard": "*",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.7",
"vue-style-loader": ">=3.0.1",
"vue-template-compiler": ">=2.6.14",
"web-ext": "^6.2.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"animate.css": "^3.5.2",
"css-loader": "^5.2.6",
"fuzzy.js": "^0.1.0",
"http-server": "^0.12.3",
"iview": "2.12.0",
"style-loader": "^2.0.0",
"timeago.js": "^4.0.2",
"vue": "^2.6.14",
"vue-i18n": ">=8.24.5"
},
"webExt": {
"sourceDir": "./dist/extension/",
"artifactsDir": "./build/"
},
"eslintConfig": {
"env": {
"browser": true,
"chrome": true,
"es2021": true,
"firefox": true,
"greasemonkey": true,
"jquery": true,
"mozilla": true,
"node": false,
"webextensions": true
},
"extends": [
"eslint:all"
],
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"ecmaFeatures": {
"globalReturn": true,
"arrowFunctions": true,
"modules": true
},
"ecmaVersion": 12
},
"rules": {}
},
"standard": {
"ignore": [
"user.js"
]
}
}