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
75 lines (75 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.63 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
{
"name": "uscript-plus-firefox",
"description": "Show current site all UserJS, the easier way to install UserJs for Tampermonkey.",
"author": "Magic <magicoflolis@tuta.io>",
"version": "3.6.15",
"license": "MIT",
"scripts": {
"Dev:UserJS": "concurrently \"npm run build:UserJS\" \"npm run build:Sass\"",
"Dev:FF": "concurrently \"npm run Webpack:FF\" \"npm run Start:Sass\"",
"Dev:Cr": "concurrently \"npm run Webpack:Cr\" \"npm run Start:Sass\"",
"Webpack:FF": "webpack --progress --mode development --config=tools/webpack.config.js --node-env firefox",
"Webpack:Cr": "webpack --progress --mode development --config=tools/webpack.config.js --node-env chrome",
"Webpack:Core": "webpack --watch --progress --config=tools/userjs.config.js",
"Start:Sass": "sass -w ./src/sass/magicuserjs.scss:./tests/compiled/magicuserjs.css -s compressed",
"build:Sass": "sass -w --no-source-map ./userscript/src/sass/magicuserjs.scss:./tests/compiled/muserjs.css -s compressed",
"build:Firefox": "webpack --mode production --config=tools/webpack.config.js --node-env firefox",
"build:Chrome": "webpack --mode production --config=tools/webpack.config.js --node-env chrome",
"build:Core": "webpack --config=tools/userjs.config.js",
"build:UserJS": "npm --prefix ./userscript run dev:Start"
},
"devDependencies": {
"@mdi/font": "^5.9.55",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.3",
"@types/psl": "^1.1.0",
"concurrently": "^7.2.2",
"copy-webpack-plugin": "^11.0.0",
"dotenv": "^16.0.2",
"eslint-plugin-html": "^7.1.0",
"path-browserify": "^1.0.1",
"standard": "*",
"swc-loader": "^0.2.3",
"terser-webpack-plugin": "^5.3.6",
"url-loader": "^4.1.1",
"vue-loader": "^17.0.0",
"vue-style-loader": ">=4.1.3",
"vue-template-compiler": ">=2.6.14",
"web-ext": "^7.2.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"animate.css": "^3.5.2",
"css-loader": "^6.7.1",
"fuzzy.js": "^0.1.0",
"iview": "2.12.0",
"style-loader": "^3.3.1",
"timeago.js": "^4.0.2",
"vue": "^3.2.37",
"vue-i18n": ">=9.1.10"
},
"bugs": {
"url": "https://github.com/magicoflolis/Userscript-Plus/issues/new"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magicoflolis/Userscript-Plus.git"
},
"keywords": [
"userscript",
"userjs",
"tampermonkey"
],
"homepage": "https://github.com/magicoflolis/Userscript-Plus",
"webExt": {
"sourceDir": "./dist/extension/",
"artifactsDir": "./build/"
},
"standard": {
"ignore": [
"user.js"
]
}
}