-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.75 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.75 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@sync-vault-js/core",
"version": "1.0.0",
"description": "The Universal Sync Layer - Offline-first store-and-forward engine for any JavaScript environment",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./react": {
"import": "./dist/integrations/react.mjs",
"require": "./dist/integrations/react.js",
"types": "./dist/integrations/react.d.ts"
},
"./vue": {
"import": "./dist/integrations/vue.mjs",
"require": "./dist/integrations/vue.js",
"types": "./dist/integrations/vue.d.ts"
},
"./angular": {
"import": "./dist/integrations/angular.mjs",
"require": "./dist/integrations/angular.js",
"types": "./dist/integrations/angular.d.ts"
},
"./svelte": {
"import": "./dist/integrations/svelte.mjs",
"require": "./dist/integrations/svelte.js",
"types": "./dist/integrations/svelte.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest",
"demo": "cd demo && npm run dev",
"demo:build": "cd demo && npm run build",
"demo:serve": "cd demo && npm run serve",
"prepublishOnly": "npm run build"
},
"keywords": [
"offline-first",
"sync",
"queue",
"store-and-forward",
"indexeddb",
"react",
"vue",
"angular",
"svelte",
"react-native",
"universal"
],
"author": {
"name": "Nabhodipta Garai",
"url": "https://github.com/brownboycodes"
},
"contributors": [
{
"name": "Swayam Debata",
"url": "https://github.com/SwayamDebata"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/brownboycodes/sync-vault-js.git"
},
"bugs": {
"url": "https://github.com/brownboycodes/sync-vault-js/issues"
},
"homepage": "https://github.com/brownboycodes/sync-vault-js#readme",
"dependencies": {
"idb": "^8.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/react": "^18.2.0",
"@types/uuid": "^9.0.7",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0",
"vue": "^3.4.0"
},
"peerDependencies": {
"react": ">=17.0.0",
"vue": ">=3.0.0",
"@angular/core": ">=15.0.0",
"svelte": ">=4.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"vue": {
"optional": true
},
"@angular/core": {
"optional": true
},
"svelte": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
}
}