-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
48
49
50
51
52
53
54
{
"name": "@onsetsoftware/svelte-supabase-offline-store",
"version": "0.1.0",
"description": "An offline resilient Svelte store for Supabase",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onsetsoftware/svelte-supabase-offline-store.git"
},
"keywords": [
"svelte",
"local",
"storage",
"writable",
"store"
],
"author": "On Set Software Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/onsetsoftware/svelte-supabase-offline-store/issues"
},
"homepage": "https://github.com/onsetsoftware/svelte-supabase-offline-store#readme",
"devDependencies": {
"@onsetsoftware/svelte-local-storage-store": "^1.1.0",
"@supabase/supabase-js": "^2.0.0",
"nanoid": "^4.0.0",
"svelte": "^3.51.0",
"typescript": "^4.6.4",
"vite": "^3.0.0",
"vite-plugin-dts": "^1.4.0",
"vitest": "^0.18.1"
},
"peerDependencies": {
"svelte": "^3.51.0"
},
"files": [
"dist"
],
"main": "./dist/svelte-supabase-offline-store.umd.js",
"module": "./dist/svelte-supabase-offline-store.es.js",
"exports": {
".": {
"import": "./dist/svelte-supabase-offline-store.es.js",
"require": "./dist/svelte-supabase-offline-store.umd.js"
}
},
"types": "./dist/types/index.d.ts"
}