@type32/tauri-sqlite-orm 0.2.13 → 0.2.15

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@type32/tauri-sqlite-orm",
3
- "version": "0.2.13",
3
+ "version": "0.2.15",
4
4
  "description": "A Drizzle-like ORM for Tauri v2's SQL JS API plugin.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -17,7 +17,7 @@
17
17
  "scripts": {
18
18
  "build": "tsup src/index.ts --format esm,cjs --dts",
19
19
  "dev": "tsup src/index.ts --format esm,cjs --dts --watch",
20
- "test": "echo \"Error: no test specified\" && exit 1",
20
+ "test": "bun test",
21
21
  "release:minor": "bun run build && bun pm version minor && bun publish",
22
22
  "release:patch": "bun run build && bun pm version patch && bun publish"
23
23
  },
@@ -30,12 +30,12 @@
30
30
  "author": "Type-32",
31
31
  "license": "MIT",
32
32
  "devDependencies": {
33
- "@types/node": "^24.10.1",
34
- "tsup": "^8.5.0",
33
+ "@types/node": "^25.4.0",
34
+ "tsup": "^8.5.1",
35
35
  "typescript": "^5.9.3"
36
36
  },
37
37
  "dependencies": {
38
- "@tauri-apps/plugin-sql": "^2.3.1",
39
- "nuxt": "^4.2.1"
38
+ "@tauri-apps/plugin-sql": "^2.3.2",
39
+ "kysely": "^0.28.11"
40
40
  }
41
41
  }