-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "@furudean/svelte-persistent-store",
"version": "0.9.0",
"description": "Svelte store that saves and loads data from localStorage or sessionStorage",
"keywords": [
"svelte",
"svelte-kit",
"store",
"localStorage",
"sessionStorage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/furudean/svelte-persistent-store.git"
},
"license": "MIT",
"funding": "https://github.com/sponsors/furudean",
"author": "Merilynn Bandy <[email protected]> (https://www.furudean.com/)",
"type": "module",
"scripts": {
"check": "svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-check --tsconfig ./jsconfig.json --watch",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "prettier --ignore-path .gitignore --check .",
"package": "svelte-package"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"devDependencies": {
"@sveltejs/package": "^2.3.0",
"prettier": "^3.2.5",
"svelte": "^4.2.12",
"svelte-check": "^3.6.8",
"typescript": "~5.4.3"
},
"peerDependencies": {
"svelte": "^3 || ^4"
}
}