-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 1.8 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
78
79
80
81
82
{
"name": "webext-storage-cache",
"version": "6.0.3",
"description": "Cache values in your Web Extension and clear them on expiration. Also includes a memoize-like API to cache any function results automatically.",
"keywords": [
"await",
"background page",
"browser",
"cache",
"chrome",
"content script",
"expirating",
"extension",
"firefox",
"safari",
"memoize",
"memoization",
"options page",
"promises",
"self-cleaning",
"temporary",
"web-ext",
"webext"
],
"repository": "fregante/webext-storage-cache",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"contributors": [
"Connor Love"
],
"type": "module",
"exports": {
".": "./distribution/index.js",
"./legacy.js": "./distribution/legacy.js"
},
"types": "./distribution/index.d.ts",
"files": [
"distribution/index.js",
"distribution/index.d.ts",
"distribution/legacy.js",
"distribution/legacy.d.ts",
"distribution/cached-value.js",
"distribution/cached-value.d.ts",
"distribution/cached-function.js",
"distribution/cached-function.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "tsc && tsd && vitest run && xo",
"watch": "tsc --watch"
},
"xo": {
"envs": [
"browser",
"webextensions"
]
},
"dependencies": {
"@sindresorhus/to-milliseconds": "^2.0.0",
"type-fest": "^4.30.1",
"webext-detect": "^5.3.2",
"webext-polyfill-kinda": "^1.0.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^7.0.0",
"@types/chrome": "0.0.287",
"@types/sinon-chrome": "^2.2.15",
"sinon-chrome": "^3.0.1",
"tsd": "^0.31.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"xo": "^0.60.0"
},
"engines": {
"node": ">=18"
},
"tsd": {
"directory": "source"
}
}