@sqliteai/sqlite-sync-darwin-x86_64 0.8.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +41 -0
- package/README.md +27 -0
- package/cloudsync.dylib +0 -0
- package/index.js +5 -0
- package/package.json +35 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Elastic License 2.0 (modified for open-source use)
|
|
2
|
+
|
|
3
|
+
Copyright © 2025 SQLite Cloud, Inc.
|
|
4
|
+
|
|
5
|
+
This software is licensed under the Elastic License 2.0, with the additional grant described below.
|
|
6
|
+
|
|
7
|
+
You may not use this file except in compliance with the Elastic License 2.0 and the conditions outlined here.
|
|
8
|
+
|
|
9
|
+
You may obtain a copy of the Elastic License 2.0 at:
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
https://www.elastic.co/licensing/elastic-license
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Software distributed under the Elastic License is distributed on an "AS IS" BASIS,
|
|
16
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
17
|
+
|
|
18
|
+
See the Elastic License 2.0 for the specific language governing permissions and limitations under the license.
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Additional Grant for Open-Source Projects
|
|
23
|
+
|
|
24
|
+
In addition to the permissions granted under the Elastic License 2.0:
|
|
25
|
+
|
|
26
|
+
* **Free Use in Open-Source Projects**:
|
|
27
|
+
You may use, copy, distribute, and prepare derivative works of the software — in source or object form, with or without modification — freely and without fee, provided the software is incorporated into or used by an **open-source project** licensed under an OSI-approved open-source license.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Conditions
|
|
32
|
+
|
|
33
|
+
1. For **open-source projects**, the software may be used, copied, modified, and distributed without restriction or fee.
|
|
34
|
+
|
|
35
|
+
2. For **non–open-source or commercial production use**, you may use, copy, distribute, and prepare derivative works of the software only with a commercial license from SQLite Cloud, Inc.
|
|
36
|
+
|
|
37
|
+
3. You may not provide the software to third parties as a managed service, such as a hosted or cloud-based service, unless you have a license for that use.
|
|
38
|
+
|
|
39
|
+
4. The software may not be used to circumvent the license grant limitations.
|
|
40
|
+
|
|
41
|
+
5. Any permitted use is subject to compliance with the Elastic License 2.0, this additional grant, and applicable law.
|
package/README.md
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# @sqliteai/sqlite-sync-darwin-x86_64
|
|
2
|
+
|
|
3
|
+
SQLite Sync extension for macOS x86_64 (Intel)
|
|
4
|
+
|
|
5
|
+
**Version:** 0.8.53
|
|
6
|
+
|
|
7
|
+
This is a platform-specific package for [@sqliteai/sqlite-sync](https://www.npmjs.com/package/@sqliteai/sqlite-sync).
|
|
8
|
+
|
|
9
|
+
It is installed automatically as an optional dependency and should not be installed directly.
|
|
10
|
+
|
|
11
|
+
## Installation
|
|
12
|
+
|
|
13
|
+
Install the main package instead:
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @sqliteai/sqlite-sync
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Platform
|
|
20
|
+
|
|
21
|
+
- **OS:** darwin
|
|
22
|
+
- **CPU:** x64, ia32
|
|
23
|
+
- **Binary:** cloudsync.dylib
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
|
|
27
|
+
See [LICENSE.md](./LICENSE.md) in the root directory.
|
package/cloudsync.dylib
ADDED
|
Binary file
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sqliteai/sqlite-sync-darwin-x86_64",
|
|
3
|
+
"version": "0.8.53",
|
|
4
|
+
"description": "SQLite Sync extension for macOS x86_64 (Intel)",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"os": [
|
|
7
|
+
"darwin"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64",
|
|
11
|
+
"ia32"
|
|
12
|
+
],
|
|
13
|
+
"files": [
|
|
14
|
+
"cloudsync.dylib",
|
|
15
|
+
"index.js",
|
|
16
|
+
"README.md",
|
|
17
|
+
"LICENSE.md"
|
|
18
|
+
],
|
|
19
|
+
"keywords": [
|
|
20
|
+
"sqlite",
|
|
21
|
+
"sync",
|
|
22
|
+
"darwin",
|
|
23
|
+
"x86_64"
|
|
24
|
+
],
|
|
25
|
+
"author": "SQLite Cloud, Inc.",
|
|
26
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/sqliteai/sqlite-sync.git",
|
|
30
|
+
"directory": "packages/node"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=16.0.0"
|
|
34
|
+
}
|
|
35
|
+
}
|