-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 954 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
{
"name": "@juriadams/async-cache",
"version": "1.0.2",
"description": "An efficient caching utility with asynchronous capabilities for third-party retrieval and revalidation.",
"main": "./dist/index.mjs",
"scripts": {
"test": "vitest run --coverage",
"prebuild": "rm -rf ./dist",
"build": "bunchee -m --dts"
},
"files": [
"./dist"
],
"exports": {
"module": "./dist/index.esm.js",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"keywords": [
"cache"
],
"author": {
"name": "Juri Adams",
"email": "juri@adams.sh",
"url": "https://adams.sh"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.9",
"@vitest/coverage-v8": "^0.34.3",
"bunchee": "^3.7.1",
"typescript": "^5.2.2",
"vitest": "^0.34.3"
}
}