@rex0220/kintone-sql-tools 3.68.0 → 3.70.0

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.
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rex0220/kintone-sql-tools",
3
- "version": "3.68.0",
3
+ "version": "3.70.0",
4
4
  "description": "kintone SQL plugin, CLI, and MCP tools (ksql)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,18 +24,26 @@
24
24
  "import": "./dist-engine/index.mjs",
25
25
  "require": "./dist-engine/index.cjs"
26
26
  },
27
+ "./flow": {
28
+ "types": "./dist-flow/flow-library/index.d.ts",
29
+ "import": "./dist-flow/index.mjs",
30
+ "require": "./dist-flow/index.cjs"
31
+ },
27
32
  "./package.json": "./package.json"
28
33
  },
29
34
  "scripts": {
30
35
  "test": "npm run version:check && npm run docs:check && node scripts/run-tests.mjs",
31
36
  "test:parallel": "jest --maxWorkers=2 --testPathIgnorePatterns=console\\.e2e\\.test\\.ts dml_guard\\.e2e\\.test\\.ts",
32
37
  "test:subprocess": "jest --runInBand src/cli/__tests__/console.e2e.test.ts src/cli/__tests__/dml_guard.e2e.test.ts",
33
- "build": "npm run build:plugin && npm run build:cli && npm run build:mcp && npm run build:mcpb && npm run build:engine",
38
+ "build": "npm run build:plugin && npm run build:cli && npm run build:mcp && npm run build:mcpb && npm run build:engine && npm run build:flow",
34
39
  "build:plugin": "node build.mjs",
35
40
  "build:cli": "node build-cli.mjs",
36
41
  "build:mcp": "node build-mcp.mjs",
37
42
  "build:mcpb": "node build-mcpb.mjs",
38
43
  "build:engine": "node build-engine.mjs",
44
+ "build:flow": "node build-flow.mjs",
45
+ "flow:bundle-guard": "node scripts/flow-bundle-guard.mjs",
46
+ "flow:pack-smoke": "npm pack --dry-run --json",
39
47
  "engine:bundle-guard": "node scripts/engine-bundle-guard.mjs",
40
48
  "engine:declaration-smoke": "node scripts/engine-declaration-smoke.mjs",
41
49
  "engine:pack-smoke": "node scripts/engine-pack-smoke.mjs",
@@ -52,13 +60,14 @@
52
60
  "benchmark:b65": "node --expose-gc scripts/b65-grouping-benchmark.mjs",
53
61
  "benchmark:b67-phase2": "node scripts/b67-phase2-prefilter-benchmark.mjs",
54
62
  "mcp:inspector": "npx -y @modelcontextprotocol/inspector node dist-mcp/ksql-mcp.js",
55
- "prepack": "npm run version:check:release && npm run build:cli && npm run build:mcp && npm run build:mcpb && npm run build:engine && npm run engine:bundle-guard && npm run engine:declaration-smoke",
63
+ "prepack": "npm run version:check:release && npm run build:cli && npm run build:mcp && npm run build:mcpb && npm run build:engine && npm run build:flow && npm run engine:bundle-guard && npm run engine:declaration-smoke && npm run flow:bundle-guard",
56
64
  "start": "run-p develop upload",
57
65
  "develop": "node build.mjs --watch",
58
66
  "upload": "node scripts/upload-plugin.cjs"
59
67
  },
60
68
  "files": [
61
69
  "dist-engine/",
70
+ "dist-flow/",
62
71
  "dist-cli/",
63
72
  "dist-mcp/",
64
73
  "dist-mcpb/",