sqlew 3.6.2 → 3.6.3

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.
package/package.json CHANGED
@@ -1,85 +1,85 @@
1
- {
2
- "name": "sqlew",
3
- "version": "3.6.2",
4
- "description": "MCP server for efficient context sharing between Claude Code sub-agents with database-driven help system (60-70% token reduction), Kanban Task Watcher, Git-aware auto-complete, Decision 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
- },
11
- "files": [
12
- "dist/",
13
- "assets/",
14
- "docs/",
15
- "README.md",
16
- "LICENSE",
17
- "CHANGELOG.md",
18
- "MIGRATION_v2.md",
19
- "ARCHITECTURE.md"
20
- ],
21
- "scripts": {
22
- "build": "tsc",
23
- "start": "node dist/index.js",
24
- "cli": "node dist/cli.js",
25
- "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
26
- "dev": "tsc --watch",
27
- "clean": "rm -rf dist",
28
- "rebuild": "npm run clean && npm run build",
29
- "test": "npm run build && node --test dist/tests/tasks.dependencies.test.js",
30
- "test:all-features": "npm run build && node dist/tests/all-features.test.js",
31
- "test:migrations": "npm run build && node dist/tests/migrations/test-v3.2-migration.js",
32
- "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
33
- "prepare": "husky",
34
- "prepublishOnly": "npm run rebuild",
35
- "knex": "tsx node_modules/.bin/knex --knexfile src/knexfile.ts",
36
- "migrate:make": "npm run knex migrate:make",
37
- "migrate:latest": "npm run knex migrate:latest",
38
- "migrate:rollback": "npm run knex migrate:rollback",
39
- "migrate:rollback:all": "npm run knex migrate:rollback --all",
40
- "migrate:status": "npm run knex migrate:status",
41
- "seed:make": "npm run knex seed:make",
42
- "seed:run": "npm run knex seed:run"
43
- },
44
- "engines": {
45
- "node": ">=18.0.0"
46
- },
47
- "repository": {
48
- "type": "git",
49
- "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
50
- },
51
- "bugs": {
52
- "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
53
- },
54
- "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
55
- "keywords": [
56
- "mcp",
57
- "mcp-server",
58
- "model-context-protocol",
59
- "context-sharing",
60
- "claude-code",
61
- "sub-agents",
62
- "sqlite",
63
- "token-efficiency",
64
- "shared-context"
65
- ],
66
- "author": "sin5ddd",
67
- "license": "AGPL-3.0",
68
- "dependencies": {
69
- "@modelcontextprotocol/sdk": "latest",
70
- "better-sqlite3": "^11.0.0",
71
- "chokidar": "^4.0.3",
72
- "ignore": "^7.0.5",
73
- "knex": "^3.1.0",
74
- "smol-toml": "^1.4.2",
75
- "sqlite3": "^5.1.7"
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
- }
1
+ {
2
+ "name": "sqlew",
3
+ "version": "3.6.3",
4
+ "description": "MCP server for efficient context sharing between Claude Code sub-agents with database-driven help system (60-70% token reduction), Kanban Task Watcher, Git-aware auto-complete, Decision 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
+ },
11
+ "files": [
12
+ "dist/",
13
+ "assets/",
14
+ "docs/",
15
+ "README.md",
16
+ "LICENSE",
17
+ "CHANGELOG.md",
18
+ "MIGRATION_v2.md",
19
+ "ARCHITECTURE.md"
20
+ ],
21
+ "scripts": {
22
+ "build": "tsc",
23
+ "start": "node dist/index.js",
24
+ "cli": "node dist/cli.js",
25
+ "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
26
+ "dev": "tsc --watch",
27
+ "clean": "rm -rf dist",
28
+ "rebuild": "npm run clean && npm run build",
29
+ "test": "npm run build && node --test dist/tests/tasks.dependencies.test.js",
30
+ "test:all-features": "npm run build && node dist/tests/all-features.test.js",
31
+ "test:migrations": "npm run build && node dist/tests/migrations/test-v3.2-migration.js",
32
+ "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
33
+ "prepare": "husky",
34
+ "prepublishOnly": "npm run rebuild",
35
+ "knex": "tsx node_modules/.bin/knex --knexfile src/knexfile.ts",
36
+ "migrate:make": "npm run knex migrate:make",
37
+ "migrate:latest": "npm run knex migrate:latest",
38
+ "migrate:rollback": "npm run knex migrate:rollback",
39
+ "migrate:rollback:all": "npm run knex migrate:rollback --all",
40
+ "migrate:status": "npm run knex migrate:status",
41
+ "seed:make": "npm run knex seed:make",
42
+ "seed:run": "npm run knex seed:run"
43
+ },
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "repository": {
48
+ "type": "git",
49
+ "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
50
+ },
51
+ "bugs": {
52
+ "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
53
+ },
54
+ "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
55
+ "keywords": [
56
+ "mcp",
57
+ "mcp-server",
58
+ "model-context-protocol",
59
+ "context-sharing",
60
+ "claude-code",
61
+ "sub-agents",
62
+ "sqlite",
63
+ "token-efficiency",
64
+ "shared-context"
65
+ ],
66
+ "author": "sin5ddd",
67
+ "license": "AGPL-3.0",
68
+ "dependencies": {
69
+ "@modelcontextprotocol/sdk": "latest",
70
+ "better-sqlite3": "^11.0.0",
71
+ "chokidar": "^4.0.3",
72
+ "ignore": "^7.0.5",
73
+ "knex": "^3.1.0",
74
+ "smol-toml": "^1.4.2",
75
+ "sqlite3": "^5.1.7"
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
+ }