-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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
{
"name": "better-sqlite3-compat",
"version": "0.1.0",
"description": "The better-sqlite3 API on Node's built-in node:sqlite. No native module, no rebuilds: same Database, Statement, transactions, pragma, functions, aggregates, backup and serialize contract.",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=24.16"
},
"license": "MIT",
"author": "Tom Ryan",
"keywords": [
"sqlite",
"sqlite3",
"better-sqlite3",
"node:sqlite",
"database",
"compat",
"no-native",
"prebuild",
"electron",
"synchronous"
],
"scripts": {
"build": "node scripts/build.mjs",
"test": "node --test test/api.test.mjs",
"test:parity": "node scripts/parity.mjs",
"test:types": "tsc -p test/tsconfig.json",
"test:pack": "node scripts/test-pack.mjs",
"verify": "npm run build && npm test && npm run test:parity && npm run test:types && npm run test:pack",
"prepack": "npm run build",
"prepublishOnly": "npm run verify"
},
"devDependencies": {
"@types/node": "24.10.1",
"chai": "4.5.0",
"fs-extra": "11.3.3",
"mocha": "^12.0.0",
"typescript": "5.9.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Atomics-hub/better-sqlite3-compat.git"
},
"homepage": "https://github.com/Atomics-hub/better-sqlite3-compat#readme",
"bugs": {
"url": "https://github.com/Atomics-hub/better-sqlite3-compat/issues"
}
}