-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.62 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@7mind.io/sqlcipher-wasm",
"version": "1.0.11",
"description": "A production-ready WebAssembly build of SQLCipher with real OpenSSL-based encryption, a high-level isomorphic API, and comprehensive test coverage.",
"type": "module",
"main": "./lib/sqlite-api.cjs",
"module": "./lib/sqlite-api.mjs",
"types": "./lib/sqlite-api.d.ts",
"exports": {
".": {
"import": "./lib/sqlite-api.mjs",
"require": "./lib/sqlite-api.cjs"
},
"./dist/sqlcipher.mjs": "./dist/sqlcipher.mjs",
"./dist/sqlcipher.cjs": "./dist/sqlcipher.cjs"
},
"files": [
"dist/sqlcipher.mjs",
"dist/sqlcipher.cjs",
"dist/sqlcipher.wasm",
"dist/sqlcipher.d.ts",
"lib/sqlite-api.mjs",
"lib/sqlite-api.cjs",
"lib/sqlite-api.d.ts",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "./build.sh",
"test": "node test/run-all-tests.cjs",
"test:watch": "nodemon --watch test --watch lib --watch dist test/run-all-tests.cjs",
"bench": "node bench/benchmark.cjs"
},
"keywords": [
"sqlcipher",
"sqlite",
"wasm",
"webassembly",
"database",
"sql",
"browser",
"node",
"isomorphic",
"offline",
"cross-platform",
"emscripten"
],
"author": "7Mind",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/7mind/sqlcipher-wasm.git"
},
"bugs": {
"url": "https://github.com/7mind/sqlcipher-wasm/issues"
},
"homepage": "https://github.com/7mind/sqlcipher-wasm#readme",
"devDependencies": {
"nodemon": "^3.0.0"
}
}