@qualithm/arrow-flight-sql-js 1.5.4 → 1.5.5

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.
Files changed (1) hide show
  1. package/package.json +8 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qualithm/arrow-flight-sql-js",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Arrow Flight SQL client for JavaScript and TypeScript runtimes.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -46,7 +46,6 @@
46
46
  "build:watch": "tsc -p tsconfig.build.json --watch",
47
47
  "build": "tsc -p tsconfig.build.json",
48
48
  "clean": "rm -rf dist",
49
- "demo": "bun run scripts/demo.ts",
50
49
  "dev": "bun --watch run src/index.ts",
51
50
  "docs": "typedoc",
52
51
  "format:fix": "prettier --write .",
@@ -56,11 +55,11 @@
56
55
  "prepublishOnly": "bun run clean && bun run build",
57
56
  "proto:generate": "grpc_tools_node_protoc --plugin=protoc-gen-ts_proto=./node_modules/.bin/protoc-gen-ts_proto --proto_path=./proto --ts_proto_out=./src/generated --ts_proto_opt=outputServices=grpc-js,esModuleInterop=true,importSuffix=.js,env=node,useExactTypes=false,snakeToCamel=true,outputPartialMethods=true,enumsAsLiterals=true proto/arrow/flight/protocol/sql/FlightSql.proto",
58
57
  "start": "bun run src/index.ts",
59
- "test:coverage": "bun test --coverage",
60
- "test:integration": "bun test src/__tests__/integration",
61
- "test:unit": "bun test src/__tests__/unit",
62
- "test:watch": "bun test --watch",
63
- "test": "bun test src/__tests__/unit",
58
+ "test:coverage": "vitest run --coverage",
59
+ "test:integration": "vitest run src/__tests__/integration",
60
+ "test:unit": "vitest run src/__tests__/unit",
61
+ "test:watch": "vitest",
62
+ "test": "vitest run src/__tests__/unit",
64
63
  "typecheck": "tsc -p tsconfig.node.json --noEmit"
65
64
  },
66
65
  "dependencies": {},
@@ -83,7 +82,8 @@
83
82
  "prettier": "3.8.1",
84
83
  "typedoc": "0.28.17",
85
84
  "typescript": "5.9.3",
86
- "typescript-eslint": "8.56.0"
85
+ "typescript-eslint": "8.56.0",
86
+ "vitest": "^4.0.18"
87
87
  },
88
88
  "overrides": {
89
89
  "minimatch": "10.2.1"