-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 952 Bytes
/
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
{
"name": "@libreservice/lazy-cache",
"version": "0.1.2",
"main": "dist/index.js",
"type": "module",
"files": [
"src",
"dist"
],
"homepage": "https://github.com/LibreService/lazy_cache",
"author": {
"name": "Qijia Liu",
"email": "[email protected]",
"url": "https://github.com/eagleoflqj"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint --ext .ts,.mjs src test",
"lint:fix": "eslint --ext .ts,.mjs --fix src test",
"check": "tsc --noEmit",
"build": "rm -rf dist && tsc -d",
"coverage": "vitest run --coverage test/"
},
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@vitest/coverage-v8": "^1.0.2",
"eslint": "^8.55.0",
"eslint-config-standard": "^17.1.0",
"fake-indexeddb": "^5.0.1",
"idb": "^8.0.0",
"typescript": "^5.3.3",
"vitest": "^1.0.2"
},
"peerDependencies": {
"idb": "^8.0.0"
}
}