-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.36 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
{
"name": "browser-extension-utils",
"version": "0.1.19",
"description": "Utilities for developing browser extensions and userscripts",
"type": "module",
"main": "./lib/index.js",
"exports": {
".": "./lib/index.js",
"./userscript": "./lib/userscript.js"
},
"scripts": {
"p": "prettier --write .",
"lint": "prettier --write . && xo --fix",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utags/browser-extension-utils.git"
},
"keywords": [
"extensions",
"userscripts",
"utilities"
],
"author": "Pipecraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/utags/browser-extension-utils/issues"
},
"homepage": "https://github.com/utags/browser-extension-utils#readme",
"devDependencies": {
"prettier": "^3.0.2",
"xo": "^0.56.0"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"xo": {
"space": 2,
"prettier": true,
"globals": [
"GM",
"GM_addElement",
"GM_addStyle",
"GM_registerMenuCommand",
"trustedTypes",
"MutationObserver",
"history",
"window",
"top",
"document"
],
"rules": {
"prefer-destructuring": 0,
"capitalized-comments": 0
}
}
}