-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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": "sqlite-replication",
"version": "0.0.26b",
"description": "A Typescript module to replicate SQLite DB with server.",
"scripts": {
"test": "jest"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mmouterde/sqlite-replication.git"
},
"keywords": [
"sqlite",
"replication",
"sync",
"capacitor",
"ionic",
"mobile",
"offlinefirst"
],
"author": "mmouterde",
"license": "MIT",
"bugs": {
"url": "https://github.com/mmouterde/sqlite-replication/issues"
},
"homepage": "https://github.com/mmouterde/sqlite-replication#readme",
"dependencies": {
"prettier": "^3.1.1",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@babel/preset-env": "^7.23.8",
"@babel/preset-typescript": "^7.23.3",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"peerDependencies": {
"@capacitor-community/sqlite": "^5.5.0"
}
}