-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "deviant-art-enhancer",
"version": "1.3.1",
"description": "A userscript that enhances browsing experience on deviantArt",
"scripts": {
"build": "webpack --config-register esm --mode=production",
"build-w": "webpack --watch --config-register esm --mode=development",
"build-dev": "webpack --config-register esm --mode=development"
},
"author": "martixy",
"license": "MIT",
"devDependencies": {
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^5.1",
"esm": "^3.0.81",
"event-hooks-webpack-plugin": "^2.1.0",
"pj2us-transformer": "^0.1.2",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
},
"userscript": {
"grant": [
"GM_xmlhttpRequest",
"GM_openInTab",
"GM_download",
"GM_info"
],
"match": "https://*.deviantart.com/*",
"connect": [
"deviantart.com",
"deviantart.net",
"api-da.wixmp.com"
],
"require": "https://fastcdn.org/FileSaver.js/1.1.20151003/FileSaver.min.js"
},
"dependencies": {
"brototype": "^0.0.6",
"jquery": "^3.4"
}
}