-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.06 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
{
"name": "@y_nk/cached-fetch",
"type": "module",
"version": "1.0.0",
"description": "a quick implementation of cache for fetch inspired by next.js",
"homepage": "https://github.com/y-nk/nonorepo/tree/main/cached-fetch",
"keywords": [
"fetch",
"cache",
"dedupe",
"astro",
"integration"
],
"author": "Julien Barbay <julien.barbay@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./astro": {
"types": "./dist/astro.d.ts",
"default": "./dist/astro.js"
},
"./register": {
"types": "./dist/register.d.ts",
"default": "./dist/register.js"
}
},
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"test": "vitest run",
"deploy": "npm publish --access public"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"astro": "^2.8.3",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
},
"dependencies": {
"debug": "^4.3.4"
}
}