-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 825 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 825 Bytes
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
{
"name": "sqlite-electron",
"version": "3.8.5",
"description": "A module for electron to use sqlite3 without rebuilding",
"main": "./cjs/sqlite-electron.js",
"module": "./esm/sqlite-electron.mjs",
"types": "./sqlite-electron.d.ts",
"scripts": {
"postinstall": "node ./scripts/postinstall.js"
},
"exports": {
"types": "./sqlite-electron.d.ts",
"import": "./esm/sqlite-electron.mjs",
"require": "./cjs/sqlite-electron.js"
},
"author": "Motagamwala Taha Arif Ali",
"files": [
"cjs",
"esm",
"sqlite-electron.d.ts",
"scripts",
"sqlite.py"
],
"license": "GPL-3.0-or-later",
"keywords": [
"sqlite-electron",
"sqlite3",
"sqlite",
"electron",
"database"
],
"repository": {
"url": "git+https://github.com/tmotagam/sqlite-electron.git"
}
}