-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
77 lines (77 loc) · 1.61 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
74
75
76
77
{
"name": "webext-options-sync",
"version": "4.3.0",
"description": "Helps you manage and autosave your extension's options.",
"keywords": [
"browser",
"chrome",
"extension",
"firefox",
"options",
"sync",
"webext"
],
"repository": "fregante/webext-options-sync",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <me@fregante.com> (https://fregante.com)",
"type": "module",
"main": "index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"file.js",
"file.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc",
"test": "run-p build ava xo",
"watch": "tsc --watch",
"ava": "ava",
"xo": "xo"
},
"xo": {
"envs": [
"browser",
"webextensions"
],
"rules": {
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-dynamic-delete": "off",
"@typescript-eslint/no-empty-function": "off"
}
},
"ava": {
"require": [
"./test/_env.js"
]
},
"dependencies": {
"dom-form-serializer": "^2.0.0",
"lz-string": "^1.5.0",
"throttle-debounce": "^5.0.2",
"uint8array-extras": "^1.2.0",
"webext-detect": "^5.0.2",
"webext-events": "^3.0.1",
"webext-polyfill-kinda": "^1.0.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/chrome": "0.0.268",
"@types/lz-string": "^1.3.34",
"@types/throttle-debounce": "^5.0.2",
"@types/wicg-file-system-access": "^2023.10.5",
"ava": "^6.1.3",
"npm-run-all": "^4.1.5",
"sinon": "^18.0.0",
"sinon-chrome": "^3.0.1",
"type-fest": "^4.20.1",
"typescript": "^5.5.2",
"xo": "^0.58.0"
},
"engines": {
"node": ">=18"
}
}