@dqcai/sqlite 3.2.3 → 3.2.6

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,17 +1,16 @@
1
1
  {
2
2
  "name": "@dqcai/sqlite",
3
- "version": "3.2.3",
3
+ "version": "3.2.6",
4
4
  "type": "module",
5
5
  "description": "Universal SQLite adapter for Node.js, Browser, Deno, Bun, and React Native with a unified API and query builder.",
6
6
  "main": "lib/index.js",
7
- "types": "lib/index.d.ts",
8
7
  "module": "lib/index.mjs",
8
+ "types": "lib/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
11
  "types": "./lib/index.d.ts",
12
12
  "import": "./lib/index.mjs",
13
- "require": "./lib/index.js",
14
- "browser": "./lib/index.umd.js"
13
+ "require": "./lib/index.js"
15
14
  }
16
15
  },
17
16
  "typesVersions": {
@@ -23,19 +22,17 @@
23
22
  },
24
23
  "files": [
25
24
  "lib",
26
- "README.md",
27
- "README.html"
25
+ "README.md"
28
26
  ],
29
27
  "scripts": {
30
28
  "build": "rollup -c rollup.config.js",
31
29
  "clean": "rimraf lib",
32
30
  "prebuild": "npm run clean",
33
- "obfuscate": "node ./scripts/obfuscate.mjs",
34
- "prepublishOnly": "npm run build && npm run obfuscate",
31
+ "prepublishOnly": "npm run build",
35
32
  "release": "npm publish --access public",
36
- "release:patch": "npm version patch && npm run build && npm run obfuscate && npm publish --access public",
37
- "release:minor": "npm version minor && npm run build && npm run obfuscate && npm publish --access public",
38
- "release:major": "npm version major && npm run build && npm run obfuscate && npm publish --access public"
33
+ "release:patch": "npm version patch && npm run build && npm publish --access public",
34
+ "release:minor": "npm version minor && npm run build && npm publish --access public",
35
+ "release:major": "npm version major && npm run build && npm publish --access public"
39
36
  },
40
37
  "keywords": [
41
38
  "sqlite",
@@ -71,13 +68,12 @@
71
68
  "@types/react-native-sqlite-storage": "^6.0.5",
72
69
  "better-sqlite3": "^12.4.1",
73
70
  "esbuild": "^0.25.9",
74
- "javascript-obfuscator": "^4.1.1",
75
- "obfuscate": "^0.0.11",
76
71
  "react-native": ">=0.60.0",
77
72
  "react-native-sqlite-storage": "^6.0.0",
78
73
  "rimraf": "^6.0.1",
79
74
  "rollup": "^4.49.0",
80
75
  "rollup-plugin-esbuild": "^6.2.1",
76
+ "tslib": "^2.8.1",
81
77
  "typescript": "^5.9.2"
82
78
  },
83
79
  "overrides": {
@@ -88,6 +84,10 @@
88
84
  "access": "public"
89
85
  },
90
86
  "dependencies": {
91
- "@dqcai/logger": "^2.1.3"
87
+ "@dqcai/logger": "^3.0.4"
88
+ },
89
+ "peerDependencies": {
90
+ "react-native": ">=0.60.0",
91
+ "react-native-sqlite-storage": ">=6.0.0"
92
92
  }
93
93
  }