-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.58 KB
/
package.json
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
{
"name": "better-sqlite3-proxy",
"version": "2.10.0",
"description": "Efficiently proxy sqlite tables and access data as typical array of objects.",
"keywords": [
"sqlite",
"proxy",
"array",
"sync operation",
"database",
"data access object",
"better-sqlite3",
"typescript"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/better-sqlite3-proxy.git"
},
"homepage": "https://github.com/beenotung/better-sqlite3-proxy#readme",
"bugs": {
"url": "https://github.com/beenotung/better-sqlite3-proxy/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"build": "rimraf dist && tsc -p .",
"mocha": "ts-mocha test/*.spec.ts",
"type-check": "tsc -p . --noEmit",
"test": "npm run mocha && npm run type-check"
},
"dependencies": {
"@beenotung/better-sqlite3-helper": "^4.1.7",
"better-sqlite3": "^11.1.2",
"better-sqlite3-schema": "^3.1.7",
"quick-erd": "^4.23.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/chai": "^4.3.16",
"@types/integer": "^4.0.3",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"@types/sinon": "^17.0.3",
"chai": "^4.4.1",
"mocha": "^10.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "^18.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
}
}