Skip to content

Commit 07fea64

Browse files
committed
update js deps
1 parent 19d6796 commit 07fea64

File tree

8 files changed

+419
-509
lines changed

8 files changed

+419
-509
lines changed

demo/cloudflare-backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
"wrangler-tail": "wrangler tail"
99
},
1010
"devDependencies": {
11-
"wrangler": "^3.22.4"
11+
"wrangler": "^3.24.0"
1212
}
1313
}

demo/frontend/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,31 +11,31 @@
1111
"release": "pnpm build && wrangler pages deploy dist"
1212
},
1313
"dependencies": {
14-
"@mantine/code-highlight": "^7.4.0",
15-
"@mantine/core": "^7.4.0",
16-
"@mantine/form": "^7.4.0",
17-
"@mantine/hooks": "^7.4.0",
14+
"@mantine/code-highlight": "^7.4.2",
15+
"@mantine/core": "^7.4.2",
16+
"@mantine/form": "^7.4.2",
17+
"@mantine/hooks": "^7.4.2",
1818
"@orbitinghail/sqlsync-react": "workspace:*",
1919
"@orbitinghail/sqlsync-worker": "workspace:*",
20-
"@tabler/icons-react": "^2.45.0",
20+
"@tabler/icons-react": "^2.46.0",
2121
"react": "^18.2.0",
2222
"react-dom": "^18.2.0",
2323
"react-github-btn": "^1.4.0",
2424
"react-qr-code": "^2.0.12",
25-
"react-router-dom": "^6.21.1",
25+
"react-router-dom": "^6.21.3",
2626
"uuid": "^9.0.1"
2727
},
2828
"devDependencies": {
29-
"@types/node": "^20.10.7",
30-
"@types/react": "^18.2.47",
29+
"@types/node": "^20.11.6",
30+
"@types/react": "^18.2.48",
3131
"@types/react-dom": "^18.2.18",
3232
"@types/uuid": "^9.0.7",
3333
"@vitejs/plugin-react": "^4.2.1",
34-
"autoprefixer": "^10.4.16",
34+
"autoprefixer": "^10.4.17",
3535
"postcss": "^8.4.33",
3636
"postcss-preset-mantine": "^1.12.3",
3737
"typescript": "^5.3.3",
38-
"vite": "^5.0.11",
39-
"wrangler": "^3.22.3"
38+
"vite": "^5.0.12",
39+
"wrangler": "^3.24.0"
4040
}
4141
}

examples/guestbook-react/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616
"uuid": "^9.0.1"
1717
},
1818
"devDependencies": {
19-
"@types/react": "^18.2.47",
19+
"@types/react": "^18.2.48",
2020
"@types/react-dom": "^18.2.18",
2121
"@types/uuid": "^9.0.7",
2222
"@vitejs/plugin-react": "^4.2.1",
2323
"typescript": "^5.3.3",
24-
"vite": "^5.0.11"
24+
"vite": "^5.0.12"
2525
}
2626
}

examples/guestbook-solid-js/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@
1111
"dependencies": {
1212
"@orbitinghail/sqlsync-solid-js": "workspace:*",
1313
"@orbitinghail/sqlsync-worker": "workspace:*",
14-
"solid-js": "^1.8.8",
14+
"solid-js": "^1.8.12",
1515
"uuid": "^9.0.1"
1616
},
1717
"devDependencies": {
1818
"@types/uuid": "^9.0.7",
1919
"typescript": "^5.3.3",
20-
"vite": "^5.0.11",
21-
"vite-plugin-solid": "^2.8.0",
22-
"vitest": "^1.1.3"
20+
"vite": "^5.0.12",
21+
"vite-plugin-solid": "^2.9.1",
22+
"vitest": "^1.2.1"
2323
}
2424
}

lib/sqlsync-react/package.json

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,23 @@
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
7-
"keywords": ["sqlsync", "sql", "database", "sqlite", "offline-first", "local-first"],
7+
"keywords": [
8+
"sqlsync",
9+
"sql",
10+
"database",
11+
"sqlite",
12+
"offline-first",
13+
"local-first"
14+
],
815
"repository": {
916
"type": "git",
1017
"url": "https://github.com/orbitinghail/sqlsync"
1118
},
1219
"type": "module",
13-
"files": ["dist", "src"],
20+
"files": [
21+
"dist",
22+
"src"
23+
],
1424
"main": "./src/index.ts",
1525
"types": "./src/index.ts",
1626
"exports": {
@@ -37,10 +47,10 @@
3747
"devDependencies": {
3848
"@orbitinghail/sqlsync-worker": "workspace:^",
3949
"@rollup/plugin-node-resolve": "^15.2.3",
40-
"@rollup/plugin-typescript": "^11.1.5",
41-
"@types/react": "^18.2.47",
50+
"@rollup/plugin-typescript": "^11.1.6",
51+
"@types/react": "^18.2.48",
4252
"@types/react-dom": "^18.2.18",
43-
"rollup": "^4.9.4",
53+
"rollup": "^4.9.6",
4454
"tslib": "^2.6.2",
4555
"typescript": "^5.3.3"
4656
},

lib/sqlsync-solid-js/package.json

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,24 @@
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
7-
"keywords": ["sqlsync", "sql", "database", "sqlite", "offline-first", "local-first", "solid-js"],
7+
"keywords": [
8+
"sqlsync",
9+
"sql",
10+
"database",
11+
"sqlite",
12+
"offline-first",
13+
"local-first",
14+
"solid-js"
15+
],
816
"repository": {
917
"type": "git",
1018
"url": "https://github.com/orbitinghail/sqlsync"
1119
},
1220
"type": "module",
13-
"files": ["dist", "src"],
21+
"files": [
22+
"dist",
23+
"src"
24+
],
1425
"main": "./src/index.ts",
1526
"types": "./src/index.ts",
1627
"exports": {
@@ -38,10 +49,10 @@
3849
"@orbitinghail/sqlsync-worker": "workspace:^",
3950
"@rollup/plugin-babel": "^6.0.4",
4051
"@rollup/plugin-node-resolve": "^15.2.3",
41-
"@rollup/plugin-typescript": "^11.1.5",
42-
"@types/node": "^20.10.7",
43-
"babel-preset-solid": "^1.8.8",
44-
"rollup": "^4.9.4",
52+
"@rollup/plugin-typescript": "^11.1.6",
53+
"@types/node": "^20.11.6",
54+
"babel-preset-solid": "^1.8.12",
55+
"rollup": "^4.9.6",
4556
"typescript": "^5.3.3"
4657
},
4758
"dependencies": {

lib/sqlsync-worker/package.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@
44
"description": "SQLSync is a collaborative offline-first wrapper around SQLite. It is designed to synchronize web application state between users, devices, and the edge.",
55
"homepage": "https://sqlsync.dev",
66
"license": "Apache-2.0",
7-
"keywords": ["sqlsync", "sql", "database", "sqlite", "offline-first", "local-first"],
7+
"keywords": [
8+
"sqlsync",
9+
"sql",
10+
"database",
11+
"sqlite",
12+
"offline-first",
13+
"local-first"
14+
],
815
"repository": {
916
"type": "git",
1017
"url": "https://github.com/orbitinghail/sqlsync"
@@ -48,8 +55,8 @@
4855
"devDependencies": {
4956
"@rollup/plugin-commonjs": "^25.0.7",
5057
"@rollup/plugin-node-resolve": "^15.2.3",
51-
"@rollup/plugin-typescript": "^11.1.5",
52-
"rollup": "^4.9.4",
58+
"@rollup/plugin-typescript": "^11.1.6",
59+
"rollup": "^4.9.6",
5360
"tslib": "^2.6.2",
5461
"typescript": "^5.3.3"
5562
},

0 commit comments

Comments
 (0)