sqlew 3.6.6 → 3.6.8

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 (2) hide show
  1. package/CHANGELOG.md +24 -1
  2. package/package.json +85 -86
package/CHANGELOG.md CHANGED
@@ -5,7 +5,30 @@ All notable changes to sqlew will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [Unreleased] - dev branch
8
+ ---
9
+
10
+ ## [3.6.8] - 2025-10-30
11
+
12
+ ### Fixed - Windows Environment Compatibility
13
+
14
+ **Updated better-sqlite3 for Windows support**
15
+
16
+ #### Changes
17
+ - Updated `better-sqlite3` from `^11.0.0` to `^12.4.1`
18
+ - Fixes Windows environment compatibility issues
19
+ - Improves cross-platform stability
20
+
21
+ ---
22
+
23
+ ## [3.6.7] - 2025-10-30
24
+
25
+ ### Fixed - Dependency Update
26
+
27
+ **Removed deprecated dependency**
28
+
29
+ #### Changes
30
+ - Removed deprecated dependency to ensure compatibility with latest ecosystem
31
+ - Maintenance update for long-term stability
9
32
 
10
33
  ---
11
34
 
package/package.json CHANGED
@@ -1,86 +1,85 @@
1
- {
2
- "name": "sqlew",
3
- "version": "3.6.6",
4
- "description": "MCP server for efficient context sharing between Claude Code sub-agents (60-70% token reduction), Kanban Task Watcher, Decision or Constraint Context, and streamlined documentation",
5
- "main": "dist/index.js",
6
- "type": "module",
7
- "bin": {
8
- "sqlew": "dist/index.js",
9
- "sqlew-cli": "dist/cli.js",
10
- "sqlew-init-agents": "dist/init-agents.js"
11
- },
12
- "files": [
13
- "dist/",
14
- "assets/",
15
- "docs/",
16
- "README.md",
17
- "LICENSE",
18
- "CHANGELOG.md",
19
- "MIGRATION_v2.md",
20
- "ARCHITECTURE.md"
21
- ],
22
- "scripts": {
23
- "build": "tsc",
24
- "start": "node dist/index.js",
25
- "cli": "node dist/cli.js",
26
- "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
27
- "dev": "tsc --watch",
28
- "clean": "rm -rf dist",
29
- "rebuild": "npm run clean && npm run build",
30
- "test": "npm run build && node --test dist/tests/tasks.dependencies.test.js",
31
- "test:all-features": "npm run build && node dist/tests/all-features.test.js",
32
- "test:migrations": "npm run build && node dist/tests/migrations/test-v3.2-migration.js",
33
- "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
34
- "prepare": "husky",
35
- "prepublishOnly": "npm run rebuild",
36
- "knex": "tsx node_modules/.bin/knex --knexfile src/knexfile.ts",
37
- "migrate:make": "npm run knex migrate:make",
38
- "migrate:latest": "npm run knex migrate:latest",
39
- "migrate:rollback": "npm run knex migrate:rollback",
40
- "migrate:rollback:all": "npm run knex migrate:rollback --all",
41
- "migrate:status": "npm run knex migrate:status",
42
- "seed:make": "npm run knex seed:make",
43
- "seed:run": "npm run knex seed:run"
44
- },
45
- "engines": {
46
- "node": ">=18.0.0"
47
- },
48
- "repository": {
49
- "type": "git",
50
- "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
51
- },
52
- "bugs": {
53
- "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
54
- },
55
- "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
56
- "keywords": [
57
- "mcp",
58
- "mcp-server",
59
- "model-context-protocol",
60
- "context-sharing",
61
- "claude-code",
62
- "sub-agents",
63
- "sqlite",
64
- "token-efficiency",
65
- "shared-context"
66
- ],
67
- "author": "sin5ddd",
68
- "license": "AGPL-3.0",
69
- "dependencies": {
70
- "@modelcontextprotocol/sdk": "latest",
71
- "better-sqlite3": "^11.0.0",
72
- "chokidar": "^4.0.3",
73
- "ignore": "^7.0.5",
74
- "knex": "^3.1.0",
75
- "smol-toml": "^1.4.2",
76
- "sqlite3": "^5.1.7"
77
- },
78
- "devDependencies": {
79
- "@types/better-sqlite3": "^7.6.0",
80
- "@types/knex": "^0.15.2",
81
- "@types/node": "^20.0.0",
82
- "husky": "^9.1.7",
83
- "tsx": "^4.20.6",
84
- "typescript": "^5.0.0"
85
- }
86
- }
1
+ {
2
+ "name": "sqlew",
3
+ "version": "3.6.8",
4
+ "description": "MCP server for efficient context sharing between Claude Code sub-agents (60-70% token reduction), Kanban Task Watcher, Decision or Constraint Context, and streamlined documentation",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "bin": {
8
+ "sqlew": "dist/index.js",
9
+ "sqlew-cli": "dist/cli.js",
10
+ "sqlew-init-agents": "dist/init-agents.js"
11
+ },
12
+ "files": [
13
+ "dist/",
14
+ "assets/",
15
+ "docs/",
16
+ "README.md",
17
+ "LICENSE",
18
+ "CHANGELOG.md",
19
+ "MIGRATION_v2.md",
20
+ "ARCHITECTURE.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "tsc",
24
+ "start": "node dist/index.js",
25
+ "cli": "node dist/cli.js",
26
+ "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
27
+ "dev": "tsc --watch",
28
+ "clean": "rm -rf dist",
29
+ "rebuild": "npm run clean && npm run build",
30
+ "test": "npm run build && node --test dist/tests/tasks.dependencies.test.js",
31
+ "test:all-features": "npm run build && node dist/tests/all-features.test.js",
32
+ "test:migrations": "npm run build && node dist/tests/migrations/test-v3.2-migration.js",
33
+ "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
34
+ "prepare": "husky",
35
+ "prepublishOnly": "npm run rebuild",
36
+ "knex": "tsx node_modules/.bin/knex --knexfile src/knexfile.ts",
37
+ "migrate:make": "npm run knex migrate:make",
38
+ "migrate:latest": "npm run knex migrate:latest",
39
+ "migrate:rollback": "npm run knex migrate:rollback",
40
+ "migrate:rollback:all": "npm run knex migrate:rollback --all",
41
+ "migrate:status": "npm run knex migrate:status",
42
+ "seed:make": "npm run knex seed:make",
43
+ "seed:run": "npm run knex seed:run"
44
+ },
45
+ "engines": {
46
+ "node": ">=18.0.0"
47
+ },
48
+ "repository": {
49
+ "type": "git",
50
+ "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
51
+ },
52
+ "bugs": {
53
+ "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
54
+ },
55
+ "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
56
+ "keywords": [
57
+ "mcp",
58
+ "mcp-server",
59
+ "model-context-protocol",
60
+ "context-sharing",
61
+ "claude-code",
62
+ "sub-agents",
63
+ "sqlite",
64
+ "token-efficiency",
65
+ "shared-context"
66
+ ],
67
+ "author": "sin5ddd",
68
+ "license": "AGPL-3.0",
69
+ "dependencies": {
70
+ "@modelcontextprotocol/sdk": "latest",
71
+ "better-sqlite3": "^12.4.1",
72
+ "chokidar": "^4.0.3",
73
+ "ignore": "^7.0.5",
74
+ "knex": "^3.1.0",
75
+ "smol-toml": "^1.4.2"
76
+ },
77
+ "devDependencies": {
78
+ "@types/better-sqlite3": "^7.6.0",
79
+ "@types/knex": "^0.15.2",
80
+ "@types/node": "^20.0.0",
81
+ "husky": "^9.1.7",
82
+ "tsx": "^4.20.6",
83
+ "typescript": "^5.0.0"
84
+ }
85
+ }