git-sqlite-vfs 0.0.7 → 0.0.9
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 +3 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "git-sqlite-vfs",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "A Git-Versioned SQLite Database via a Custom Virtual File System (VFS)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -25,17 +25,14 @@
|
|
|
25
25
|
"build": "cd c && make",
|
|
26
26
|
"postinstall": "node install.js",
|
|
27
27
|
"pretest": "npm run build && rm -rf .db test.db .test-db .compaction-db .git && git init --initial-branch=master",
|
|
28
|
-
"test": "node --test test
|
|
29
|
-
"test:deno": "npm run build && rm -rf .db test.db .test-db .git && git init --initial-branch=master && deno test -A test
|
|
28
|
+
"test": "node --test test/*.node.test.js",
|
|
29
|
+
"test:deno": "npm run build && rm -rf .db test.db .test-db .git && git init --initial-branch=master && deno test -A test/*.deno.test.ts"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@libsql/client": "^0.14.0",
|
|
33
33
|
"drizzle-orm": "^0.33.0",
|
|
34
34
|
"libsql": "^0.4.5"
|
|
35
35
|
},
|
|
36
|
-
"devDependencies": {
|
|
37
|
-
"better-sqlite3": "^9.4.3"
|
|
38
|
-
},
|
|
39
36
|
"author": "",
|
|
40
37
|
"license": "ISC"
|
|
41
38
|
}
|