-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.21 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "@farjs/better-sqlite3-wrapper",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/farjs/better-sqlite3-wrapper.git"
},
"author": "viktor-podzigun",
"description": "Thin api wrapper around better-sqlite3 and bun:sqlite to allow cross- runtime/engine usage",
"scripts": {
"lint": "quick-lint-js ./*.js",
"test": "bun test && node ./index.test.js",
"format": "prettier **/*.js --write",
"formatCheck": "prettier **/*.js --check"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/farjs/better-sqlite3-wrapper/issues"
},
"homepage": "https://github.com/farjs/better-sqlite3-wrapper",
"keywords": [
"sqlite",
"cross-runtime",
"bun"
],
"files": [
"index.js",
"index.d.ts",
"LICENSE.txt",
"README.md"
],
"main": "./index.js",
"exports": "./index.js",
"typings": "./index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"browserslist": "maintained node versions",
"engines": {
"node": ">=16",
"bun": ">=0.8"
},
"optionalDependencies": {
"better-sqlite3": "8.7.0"
},
"devDependencies": {
"prettier": "^3.8.1",
"quick-lint-js": "^3.0.0"
}
}