-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.68 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
64
65
66
67
68
69
70
71
72
73
{
"name": "browser-extension-settings",
"version": "0.5.6",
"description": "Settings module for developing browser extensions and userscripts",
"type": "module",
"main": "./lib/index.ts",
"exports": {
".": "./lib/index.ts"
},
"scripts": {
"p": "prettier --write .",
"lint": "run-s lint:*",
"lint:code": "prettier --write . && xo --fix",
"lint:type": "tsc --noemit",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/utags/browser-extension-settings.git"
},
"keywords": [
"extensions",
"userscripts",
"settings"
],
"author": "Pipecraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/utags/browser-extension-settings/issues"
},
"homepage": "https://github.com/utags/browser-extension-settings#readme",
"dependencies": {
"browser-extension-i18n": "^0.0.6",
"browser-extension-storage": "^0.1.2",
"browser-extension-utils": "^0.1.18"
},
"devDependencies": {
"@types/chrome": "^0.0.243",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.2",
"typescript": "^5.1.6",
"xo": "^0.56.0"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"xo": {
"space": 2,
"prettier": true,
"globals": [
"document"
],
"rules": {
"prefer-destructuring": 0,
"import/extensions": 0,
"@typescript-eslint/prefer-nullish-coalescing": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "lib/messages/*.ts",
"rules": {
"@typescript-eslint/naming-convention": 0
}
}
]
}
}