@vantail/runtime-win32-x64-sqlcipher 0.1.11

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/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @vantail/runtime-win32-x64-sqlcipher
2
+
3
+ The [Vantail](https://github.com/Vantail/vantail) native runtime for win32 x64: one executable, and nothing else.
4
+
5
+ The same, plus SQLCipher so a database can be encrypted at rest. About 3 MB larger, which is why it is a separate build rather than the default.
6
+
7
+ You do not depend on this directly. `@vantail/runtime` declares every platform build as an optional dependency, and npm installs only the one matching the `os` and `cpu` fields here - which is what keeps five binaries from landing on one machine.
8
+
9
+ ```bash
10
+ npm create @vantail my-app
11
+ ```
Binary file
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@vantail/runtime-win32-x64-sqlcipher",
3
+ "version": "0.1.11",
4
+ "description": "The Vantail native runtime for win32 x64 (sqlcipher).",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Vantail/vantail.git"
9
+ },
10
+ "os": [
11
+ "win32"
12
+ ],
13
+ "cpu": [
14
+ "x64"
15
+ ],
16
+ "files": [
17
+ "bin"
18
+ ]
19
+ }