mm_sqlite 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mm_sqlite",
3
- "version": "1.0.6",
4
- "description": "这是超级美眉sqlite帮助函数模块,用于便捷操作sqlite,使用await方式,可以避免嵌套函数",
3
+ "version": "1.0.8",
4
+ "description": "高性能SQLite数据库操作模块,提供与mm_mysql完全兼容的API接口,支持异步操作、事务处理和批量操作",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node test.js",
@@ -13,25 +13,30 @@
13
13
  },
14
14
  "keywords": [
15
15
  "sqlite",
16
+ "node.js",
16
17
  "async",
17
18
  "await",
18
19
  "promise",
19
- "add",
20
- "del",
21
- "set",
22
- "get",
23
- "query",
24
- "run",
25
- "exec"
20
+ "database",
21
+ "transaction",
22
+ "batch",
23
+ "sql",
24
+ "mm_mysql",
25
+ "compatible",
26
+ "node-sqlite3",
27
+ "async-await"
26
28
  ],
27
29
  "author": "邱文武",
28
- "license": "ISC",
30
+ "license": "MIT",
29
31
  "bugs": {
30
32
  "url": "https://gitee.com/qiuwenwu91/mm_sqlite/issues"
31
33
  },
32
34
  "homepage": "https://gitee.com/qiuwenwu91/mm_sqlite#readme",
35
+ "engines": {
36
+ "node": ">=14.0.0"
37
+ },
33
38
  "dependencies": {
34
- "mm_logs": "^1.2.0",
39
+ "mm_logs": "^1.5.2",
35
40
  "sqlite3": "^5.1.7",
36
41
  "sqlstring": "^2.3.3"
37
42
  }