@sqlitecloud/drivers 0.0.56 → 1.0.178

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": "@sqlitecloud/drivers",
3
- "version": "0.0.56",
3
+ "version": "1.0.178",
4
4
  "description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -8,17 +8,14 @@
8
8
  "lib/**/*"
9
9
  ],
10
10
  "scripts": {
11
- "test": "jest --coverage",
12
- "build": "rm -rf ./lib/ && tsc --project tsconfig.build.json && npx webpack && cp ./lib/sqlitecloud.drivers.js ./public/ && cp ./lib/sqlitecloud.drivers.dev.js ./public/",
11
+ "test": "jest --coverage --testPathIgnorePatterns=core",
12
+ "build": "rm -rf ./lib/ && tsc --project tsconfig.build.json && npx webpack",
13
13
  "publish": "npm run build && npm publish --access public",
14
14
  "prettier": "prettier --write 'src/**/*'",
15
15
  "lint": "eslint ./src/ --fix && tsc --noEmit",
16
16
  "typedoc": "rm -rf ./docs/ && typedoc --out docs && typedoc --plugin typedoc-plugin-markdown --out docs/markdown",
17
17
  "npmgui": "npx npm-gui@latest",
18
- "gateway-dev": "bun --watch ./src/gateway/gateway.ts",
19
- "gateway-start": "bun --smol run ./src/gateway/gateway.ts",
20
- "gateway-test": "bun test ./src/gateway/connection-bun.test.ts --watch --coverage --timeout 2000",
21
- "gateway-build": "./scripts/gateway-build.sh"
18
+ "prepare": "husky"
22
19
  },
23
20
  "repository": {
24
21
  "type": "git",
@@ -26,7 +23,7 @@
26
23
  },
27
24
  "license": "MIT",
28
25
  "author": {
29
- "name": "SQLiteCloud, Inc.",
26
+ "name": "SQLite Cloud, Inc.",
30
27
  "email": "support@sqlitecloud.io",
31
28
  "url": "https://sqlitecloud.io/"
32
29
  },
@@ -48,33 +45,34 @@
48
45
  "dependencies": {
49
46
  "eventemitter3": "^5.0.1",
50
47
  "lz4js": "^0.2.0",
51
- "socket.io": "^4.7.4",
52
- "socket.io-client": "^4.7.4"
48
+ "socket.io": "^4.7.5",
49
+ "socket.io-client": "^4.7.5"
53
50
  },
54
51
  "devDependencies": {
55
- "@types/bun": "^1.0.5",
52
+ "@types/bun": "^1.1.1",
56
53
  "@types/express": "^4.17.21",
57
- "@types/jest": "^29.5.11",
54
+ "@types/jest": "^29.5.12",
58
55
  "@types/lz4": "^0.6.4",
59
56
  "@types/node": "^12.20.55",
60
- "@typescript-eslint/eslint-plugin": "^4.22.0",
61
- "@typescript-eslint/parser": "^4.22.0",
62
- "dotenv": "^16.4.1",
63
- "dotenv-cli": "^7.3.0",
57
+ "@typescript-eslint/eslint-plugin": "^4.33.0",
58
+ "@typescript-eslint/parser": "^4.33.0",
59
+ "dotenv": "^16.4.5",
60
+ "dotenv-cli": "^7.4.1",
64
61
  "eslint": "^7.32.0",
65
62
  "eslint-config-prettier": "^8.10.0",
66
63
  "eslint-plugin-node": "^11.1.0",
67
64
  "eslint-plugin-prettier": "^3.4.1",
68
- "express": "^4.18.2",
65
+ "express": "^4.19.2",
66
+ "husky": "^9.0.11",
69
67
  "jest": "^29.7.0",
70
- "prettier": "^2.2.1",
71
- "sqlite3": "^5.1.6",
72
- "ts-jest": "^29.1.1",
68
+ "prettier": "^3.2.5",
69
+ "sqlite3": "^5.1.7",
70
+ "ts-jest": "^29.1.2",
73
71
  "ts-node": "^10.9.2",
74
- "typedoc": "^0.25.3",
72
+ "typedoc": "^0.25.13",
75
73
  "typedoc-plugin-markdown": "^3.17.1",
76
74
  "typescript": "^4.9.5",
77
- "webpack": "^5.90.0",
75
+ "webpack": "^5.91.0",
78
76
  "webpack-cli": "^5.1.4"
79
77
  },
80
78
  "config": {},
@@ -89,5 +87,8 @@
89
87
  "trailingComma": "none",
90
88
  "arrowParens": "avoid",
91
89
  "printWidth": 160
90
+ },
91
+ "browser": {
92
+ "tls": false
92
93
  }
93
- }
94
+ }