-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (66 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (66 loc) · 1.63 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
{
"name": "react-native-sync-vault",
"version": "1.2.0",
"description": "A reliable offline-first sync vault for persistent network operations in React Native",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=lcov",
"test:watch": "jest --watch",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"prepare": "npm run build",
"type-check": "tsc --noEmit",
"cli": "node cli/index.js"
},
"keywords": [
"react-native",
"offline",
"queue",
"sync",
"persistent",
"sqlite",
"offline-first",
"api-interception",
"fetch-interceptor",
"automatic-sync"
],
"author": "Punith M <punithm300@gmail.com>",
"license": "MIT",
"bin": {
"sync-vault-init": "./cli/index.js"
},
"files": [
"lib",
"android",
"ios",
"cli",
"README.md"
],
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"dependencies": {
"react-native-nitro-sqlite": "^9.2.1"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.72.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/126punith/react-native-sync-vault.git"
}
}