@rljson/io-sqlite 0.0.9 → 0.0.11

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.
@@ -0,0 +1,7 @@
1
+ // @license
2
+ // Copyright (c) 2025 Rljson
3
+ //
4
+ // Use of this source code is governed by terms that can be
5
+ // found in the LICENSE file in the root of this package.
6
+
7
+ export const example = () => {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rljson/io-sqlite",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "IoSql rljson files",
5
5
  "homepage": "https://github.com/rljson/io-sqlite",
6
6
  "bugs": "https://github.com/rljson/io-sqlite/issues",
@@ -19,41 +19,51 @@
19
19
  "dist"
20
20
  ],
21
21
  "type": "module",
22
+ "scripts": {
23
+ "build": "echo 'Please add esbuild to create builds'",
24
+ "test": "pnpm installConformanceTests && pnpx vitest run --coverage && pnpm run lint",
25
+ "prebuild": "npm run test",
26
+ "prepublishOnly": "npm run build",
27
+ "lint": "pnpx eslint",
28
+ "updateGoldens": "cross-env UPDATE_GOLDENS=true pnpm test",
29
+ "installConformanceTests": "node scripts/install-conformance-tests.js"
30
+ },
22
31
  "devDependencies": {
23
32
  "@types/better-sqlite3": "^7.6.13",
24
- "@types/node": "^22.15.12",
25
- "@typescript-eslint/eslint-plugin": "^8.32.0",
26
- "@typescript-eslint/parser": "^8.32.0",
27
- "@vitest/coverage-v8": "^3.1.3",
33
+ "@types/node": "^22.15.19",
34
+ "@typescript-eslint/eslint-plugin": "^8.32.1",
35
+ "@typescript-eslint/parser": "^8.32.1",
36
+ "@vitest/coverage-v8": "^3.1.4",
28
37
  "cross-env": "^7.0.3",
29
- "eslint": "^9.26.0",
30
- "eslint-plugin-jsdoc": "^50.6.11",
38
+ "eslint": "^9.27.0",
39
+ "eslint-plugin-jsdoc": "^50.6.17",
31
40
  "eslint-plugin-tsdoc": "^0.4.0",
32
- "globals": "^16.0.0",
41
+ "globals": "^16.1.0",
33
42
  "jsdoc": "^4.0.4",
34
43
  "read-pkg": "^9.0.1",
35
44
  "typescript": "~5.8.3",
36
- "typescript-eslint": "^8.32.0",
45
+ "typescript-eslint": "^8.32.1",
37
46
  "vite": "^6.3.5",
38
- "vite-node": "^3.1.3",
39
- "vite-plugin-dts": "^4.5.3",
47
+ "vite-node": "^3.1.4",
48
+ "vite-plugin-dts": "^4.5.4",
40
49
  "vite-tsconfig-paths": "^5.1.4",
41
- "vitest": "^3.1.3",
50
+ "vitest": "^3.1.4",
42
51
  "vitest-dom": "^0.1.1"
43
52
  },
44
53
  "dependencies": {
45
- "@rljson/hash": "^0.0.15",
46
- "@rljson/io": "^0.0.28",
54
+ "@rljson/hash": "^0.0.16",
55
+ "@rljson/io": "^0.0.38",
47
56
  "@rljson/is-ready": "^0.0.17",
48
57
  "@rljson/json": "^0.0.21",
49
- "@rljson/rljson": "^0.0.50",
50
- "better-sqlite3": "^11.9.1"
58
+ "@rljson/rljson": "^0.0.51",
59
+ "better-sqlite3": "^11.10.0"
51
60
  },
52
- "scripts": {
53
- "build": "echo 'Please add esbuild to create builds'",
54
- "test": "pnpx vitest run --coverage && pnpm run lint",
55
- "prebuild": "npm run test",
56
- "lint": "pnpx eslint",
57
- "updateGoldens": "cross-env UPDATE_GOLDENS=true pnpm test"
58
- }
59
- }
61
+ "pnpm": {
62
+ "onlyBuiltDependencies": [
63
+ "better-sqlite3",
64
+ "esbuild"
65
+ ],
66
+ "overrides": {}
67
+ },
68
+ "packageManager": "pnpm@10.11.0"
69
+ }