-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.6 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.6 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@journeyapps/sqlcipher",
"description": "Asynchronous, non-blocking SQLCipher bindings",
"version": "6.0.0",
"packageManager": "pnpm@10.14.0",
"homepage": "https://github.com/journeyapps/node-sqlcipher",
"author": {
"name": "JourneyApps",
"url": "https://journeyapps.com/"
},
"contributors": [
"Konstantin Käfer <mail@kkaefer.com>",
"Dane Springmeyer <dane@mapbox.com>",
"Will White <will@mapbox.com>",
"Orlando Vazquez <ovazquez@gmail.com>",
"Artem Kustikov <kustikoff@gmail.com>",
"Eric Fredricksen <efredricksen@gmail.com>",
"John Wright <mrjjwright@gmail.com>",
"Ryan Dahl <ry@tinyclouds.org>",
"Tom MacWright <tom@mapbox.com>",
"Carter Thaxton <carter.thaxton@gmail.com>",
"Audrius Kažukauskas <audrius@neutrino.lt>",
"Johannes Schauer <josch@pyneo.org>",
"Nathan Rajlich <nathan@tootallnate.net>",
"AJ ONeal <coolaj86@gmail.com>",
"Mithgol",
"Ben Noordhuis <ben@strongloop.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/journeyapps/node-sqlcipher.git"
},
"publishConfig": {
"access": "public"
},
"os": [
"darwin",
"linux"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.3.1"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"electron": "^41.1.0",
"electron-mocha": "^13.1.0",
"mocha": "^11.7.5",
"node-gyp": "^12.3.0"
},
"scripts": {
"changeset": "changeset",
"install": "node-gyp rebuild",
"pretest": "node test/support/createdb.js",
"test": "mocha -R spec --timeout 480000",
"pack": "npm pack",
"rebuild": "node-gyp rebuild",
"release": "changeset publish",
"release:dev": "changeset version --snapshot dev && changeset publish --tag dev --no-git-tag",
"version-packages": "changeset version"
},
"license": "BSD-3-Clause",
"keywords": [
"sql",
"sqlite",
"sqlite3",
"database"
],
"main": "./lib/sqlite3",
"types": "./lib/sqlite3.d.ts",
"pnpm": {
"overrides": {
"minimatch>brace-expansion": "2.1.0",
"mocha>diff": "8.0.3",
"mocha>serialize-javascript": "7.0.5",
"read-yaml-file>js-yaml": "3.14.2"
},
"onlyBuiltDependencies": [
"core-js",
"electron"
]
},
"files": [
"binding.gyp",
"deps/common-sqlite.gypi",
"deps/sqlcipher-amalgamation/VERSION.txt",
"deps/sqlcipher-amalgamation/sqlite3.c",
"deps/sqlcipher-amalgamation/sqlite3.h",
"deps/sqlcipher-amalgamation/sqlite3ext.h",
"deps/sqlite3.gyp",
"lib/**/*.js",
"lib/**/*.d.ts",
"src/",
"lib/**/*.ts",
"sqlite3.js"
]
}