forked from vlasky/zongji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"name": "@powersync/mysql-zongji",
"version": "0.1.0",
"description": "A MySQL 8.0 >= compatible fork of ZongJi - a MySQL binlog listener for Node.js.",
"main": "index.js",
"directories": {
"test": "test"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"release": "pnpm changeset publish",
"test": "tap run --disable-coverage --allow-incomplete-coverage -- --sequential test/suites.js",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "powersync-ja/powersync-mysql-zongji"
},
"keywords": [
"mysql",
"binlog"
],
"author": "Vlad Lasky (https://github.com/vlasky)",
"contributors": [
"Nevill (https://github.com/nevill)",
"numtel (https://github.com/numtel)",
"rfanth (https://github.com/rfanth)",
"Alexander Radyushin (https://github.com/fjedi)",
"Yousef El-Dardiry (https://github.com/YousefED)",
"Roopendra Talekar (https://github.com/roopen219)",
"Juan Ferrer Toribio (https://github.com/juan-ferrer-toribio)",
"JourneyApps"
],
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.3",
"prettier": "^2.8.8",
"tap": "^21.0.1"
},
"dependencies": {
"big-integer": "1.6.51",
"iconv-lite": "0.6.3",
"@vlasky/mysql": "^2.18.6"
}
}