@haverstack/adapter-sqlite 0.2.0 → 0.2.1
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/LICENSE +7 -0
- package/package.json +10 -11
package/LICENSE
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
|
|
2
|
+
|
|
3
|
+
To the extent possible under law, the Haverstack contributors have waived all
|
|
4
|
+
copyright and related or neighboring rights to Haverstack. This work is
|
|
5
|
+
published from the United States.
|
|
6
|
+
|
|
7
|
+
https://creativecommons.org/publicdomain/zero/1.0/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@haverstack/adapter-sqlite",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "SQLite storage adapter for Haverstack",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -27,21 +27,20 @@
|
|
|
27
27
|
"personal data",
|
|
28
28
|
"storage"
|
|
29
29
|
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"prepublishOnly": "pnpm run build",
|
|
32
|
-
"build": "tsc -p tsconfig.build.json",
|
|
33
|
-
"test": "vitest run",
|
|
34
|
-
"typecheck": "tsc --noEmit",
|
|
35
|
-
"lint": "eslint src tests"
|
|
36
|
-
},
|
|
37
30
|
"dependencies": {
|
|
38
|
-
"
|
|
39
|
-
"
|
|
31
|
+
"sql.js": "^1.14.0",
|
|
32
|
+
"@haverstack/core": "0.2.0"
|
|
40
33
|
},
|
|
41
34
|
"devDependencies": {
|
|
42
35
|
"@types/node": "^22.0.0",
|
|
43
36
|
"@types/sql.js": "^1.4.9",
|
|
44
37
|
"typescript": "^5.5.0",
|
|
45
38
|
"vitest": "^2.0.0"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -p tsconfig.build.json",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"lint": "eslint src tests"
|
|
46
45
|
}
|
|
47
|
-
}
|
|
46
|
+
}
|