-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.71 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
{
"name": "pouchdb-adapter-node-sqlite",
"version": "1.0.0",
"description": "PouchDB adapter using better-sqlite3 for Electron applications",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mkdir -p tmp && mocha tests --require tests/node.setup.js",
"test:debug": "mkdir -p tmp && mocha tests --require tests/node.setup.js",
"lint": "eslint src --ext .ts",
"prepare": "npm run build"
},
"keywords": [
"pouchdb",
"adapter",
"sqlite",
"sqlite3",
"better-sqlite3",
"electron",
"database"
],
"author": "Takuya Matsuyama<t@inkdrop.app>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/inkdropapp/pouchdb-adapter-node-sqlite.git"
},
"bugs": {
"url": "https://github.com/inkdropapp/pouchdb-adapter-node-sqlite/issues"
},
"homepage": "https://github.com/inkdropapp/pouchdb-adapter-node-sqlite#readme",
"dependencies": {
"better-sqlite3": "^12.2.0",
"pouchdb-adapter-utils": "^9.0.0",
"pouchdb-binary-utils": "^9.0.0",
"pouchdb-errors": "^9.0.0",
"pouchdb-json": "^9.0.0",
"pouchdb-merge": "^9.0.0",
"pouchdb-utils": "^9.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^24.1.0",
"@types/pouchdb": "^6.4.2",
"chai": "^5.2.1",
"chai-as-promised": "^8.0.1",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"mocha": "^11.7.1",
"pouchdb-adapter-http": "^9.0.0",
"pouchdb-core": "^9.0.0",
"pouchdb-mapreduce": "^9.0.0",
"pouchdb-replication": "^9.0.0",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
}
}