-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
41 lines (41 loc) · 900 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
39
40
41
{
"name": "sswr",
"version": "2.1.0",
"description": "Svelte stale while revalidate (SWR) data fetching strategy",
"repository": "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": "^4.2.8",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0-next.0"
}
}