-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.58 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.58 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
{
"name": "gm-compat",
"version": "1.1.0",
"description": "Portable monkey-patching for userscripts",
"author": "chocolateboy",
"repository": "https://github.com/chocolateboy/gm-compat",
"license": "Artistic-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.iife.min.js",
"unpkg": "dist/index.iife.min.js",
"scripts": {
"build": "cross-env NODE_ENV=production bili --module-name GMCompat --no-map --format cjs,esm,umd,umd-min,iife,iife-min -d dist src/index.js",
"build:doc": "toc-md README.md",
"build:release": "run-p build build:doc",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-s clean build:release",
"rebuild": "run-s clean build"
},
"files": [
"dist/index.esm.js",
"dist/index.iife.js",
"dist/index.iife.min.js",
"dist/index.js",
"dist/index.umd.js",
"dist/index.umd.min.js"
],
"browserslist": "maintained node versions",
"devDependencies": {
"@types/greasemonkey": "^4.0.0",
"bili": "^5.0.5",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"toc-md-alt": "^0.4.1"
},
"keywords": [
"cloneinto",
"clone-into",
"exportfunction",
"export-function",
"greasemonkey",
"monkeypatch",
"shim",
"tampermonkey",
"unsafewindow",
"unsafe-window",
"userscript",
"userscripts",
"violentmonkey",
"xhr",
"xmlhttprequest"
]
}