sqlew 3.6.6 → 3.6.7

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 +11 -1
  2. package/package.json +85 -86
package/CHANGELOG.md CHANGED
@@ -5,7 +5,17 @@ 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.7] - 2025-10-30
11
+
12
+ ### Fixed - Dependency Update
13
+
14
+ **Removed deprecated dependency**
15
+
16
+ #### Changes
17
+ - Removed deprecated dependency to ensure compatibility with latest ecosystem
18
+ - Maintenance update for long-term stability
9
19
 
10
20
  ---
11
21
 
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.7",
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
+ },
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
+ }