-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 972 Bytes
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
{
"name": "sswr",
"version": "2.1.0",
"bugs": {
"url": "https://github.com/ConsoleTVs/sswr/issues"
},
"description": "Svelte stale while revalidate (SWR) data fetching strategy",
"repository": "https://github.com/ConsoleTVs/sswr",
"author": "Èrik C. Forés",
"license": "MIT",
"type": "module",
"types": "./dist/sswr.d.ts",
"main": "./dist/sswr.umd.cjs",
"module": "./dist/sswr.js",
"exports": {
".": {
"types": "./dist/sswr.d.ts",
"import": "./dist/sswr.js",
"require": "./dist/sswr.umd.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"package.json"
],
"scripts": {
"dev": "vite",
"build": "vite build && tsc",
"prepack": "npm run build"
},
"dependencies": {
"swrev": "^4.0.0"
},
"devDependencies": {
"svelte": "^5.0.0",
"typescript": "^5.3.3",
"vite": "^6.0.0"
},
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
}
}