@aiquants/duckdb-helper 1.4.0 → 1.4.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.
Files changed (1) hide show
  1. package/package.json +24 -26
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiquants/duckdb-helper",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "DuckDB helper utilities with React hooks, worker initialization, and typed query helpers",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -19,30 +19,6 @@
19
19
  "LICENSE",
20
20
  "docs"
21
21
  ],
22
- "scripts": {
23
- "build": "tsup",
24
- "prepare": "pnpm run build",
25
- "build:watch": "tsup --watch",
26
- "dev": "tsup --watch",
27
- "watch": "tsup --watch",
28
- "type-check": "tsc --noEmit",
29
- "typecheck": "npm run type-check",
30
- "clean": "rimraf dist",
31
- "prepublishOnly": "npm run clean && npm run typecheck && npm run test --if-present && npm run build",
32
- "publish:patch": "npm version patch && npm publish",
33
- "publish:minor": "npm version minor && npm publish",
34
- "publish:major": "npm version major && npm publish",
35
- "lint": "biome lint src/",
36
- "lint:fix": "biome lint --write src/",
37
- "format": "biome format src/",
38
- "format:fix": "biome format --write src/",
39
- "check": "biome check src/",
40
- "check:fix": "biome check --write src/",
41
- "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
42
- "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
43
- "test": "vitest run --passWithNoTests",
44
- "test:coverage": "vitest run --coverage --passWithNoTests"
45
- },
46
22
  "keywords": [
47
23
  "duckdb",
48
24
  "database",
@@ -87,5 +63,27 @@
87
63
  },
88
64
  "publishConfig": {
89
65
  "access": "public"
66
+ },
67
+ "scripts": {
68
+ "build": "tsup",
69
+ "build:watch": "tsup --watch",
70
+ "dev": "tsup --watch",
71
+ "watch": "tsup --watch",
72
+ "type-check": "tsc --noEmit",
73
+ "typecheck": "npm run type-check",
74
+ "clean": "rimraf dist",
75
+ "publish:patch": "npm version patch && pnpm publish --no-git-checks",
76
+ "publish:minor": "npm version minor && pnpm publish --no-git-checks",
77
+ "publish:major": "npm version major && pnpm publish --no-git-checks",
78
+ "lint": "biome lint src/",
79
+ "lint:fix": "biome lint --write src/",
80
+ "format": "biome format src/",
81
+ "format:fix": "biome format --write src/",
82
+ "check": "biome check src/",
83
+ "check:fix": "biome check --write src/",
84
+ "license-check": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\"",
85
+ "license-check:json": "pnpm dlx license-checker --production --onlyAllow \"MIT;Apache-2.0;BSD-2-Clause;BSD-3-Clause;ISC;Unlicense\" --json",
86
+ "test": "vitest run",
87
+ "test:coverage": "vitest run --coverage"
90
88
  }
91
- }
89
+ }