sqlew 3.9.0 → 3.9.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 +121 -121
package/package.json CHANGED
@@ -1,121 +1,121 @@
1
- {
2
- "name": "sqlew",
3
- "version": "3.9.0",
4
- "description": "SQL Efficient Workflow - MCP server Provides consistency and token savings for AI coding",
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
- "sqlew-init-commands": "dist/init-commands.js"
12
- },
13
- "files": [
14
- "dist/",
15
- "scripts/",
16
- "assets/",
17
- "docs/",
18
- "README.md",
19
- "LICENSE",
20
- "CHANGELOG.md",
21
- "MIGRATION_v2.md",
22
- "ARCHITECTURE.md"
23
- ],
24
- "scripts": {
25
- "build": "tsc",
26
- "start": "node dist/index.js",
27
- "cli": "node dist/cli.js",
28
- "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
29
- "dev": "tsc --watch",
30
- "clean": "rimraf dist",
31
- "rebuild": "npm run clean && npm run build",
32
- "test": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
33
- "test:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\"",
34
- "test:ci": "npm run build && npm test",
35
- "test:vcs": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\" | node scripts/filter-test-output.js",
36
- "test:vcs:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\"",
37
- "test:all": "node --test --test-force-exit --import tsx \"src/tests/**/*.test.ts\" | node scripts/filter-test-output.js",
38
- "test:all:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/**/*.test.ts\"",
39
- "test:unit": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" | node scripts/filter-test-output.js",
40
- "test:unit:verbose": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\"",
41
- "test:feature": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\" | node scripts/filter-test-output.js",
42
- "test:feature:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\"",
43
- "test:database": "node --test --test-force-exit --import tsx \"src/tests/database/**/*.test.ts\" | node scripts/filter-test-output.js",
44
- "test:database:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/**/*.test.ts\"",
45
- "test:integration": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
46
- "test:integration:verbose": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\"",
47
- "test:decision": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\" | node scripts/filter-test-output.js",
48
- "test:decision:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\"",
49
- "test:task": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\" | node scripts/filter-test-output.js",
50
- "test:task:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\"",
51
- "test:migrations": "node --test --test-force-exit --import tsx \"src/tests/database/migrations/**/*.test.ts\" | node scripts/filter-test-output.js",
52
- "test:migrations:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/migrations/**/*.test.ts\"",
53
- "test:sql-dump": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
54
- "test:sql-dump:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\"",
55
- "test:all-features": "npm run build && node dist/tests/integration/all-features.standalone.js",
56
- "test:docker": "npm run build && node --test --test-force-exit dist/tests/docker/**/*.test.js",
57
- "test:cross-db": "npm run build && node --test dist/tests/docker/cross-database.test.js",
58
- "test:native": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js | node scripts/filter-test-output.js",
59
- "test:native:verbose": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js",
60
- "test:migration-upgrade-paths": "npm run build && node --test dist/tests/database/migrations/upgrade-paths.test.js",
61
- "test:migration-idempotency": "npm run build && node --test dist/tests/database/migrations/idempotency.test.js",
62
- "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
63
- "test:migrations:ci": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
64
- "prepare": "husky",
65
- "prepublishOnly": "npm run rebuild",
66
- "knex": "npx tsx node_modules/knex/bin/cli.js --knexfile src/knexfile.ts",
67
- "migrate:make": "npm run knex migrate:make",
68
- "migrate:latest": "npm run knex migrate:latest",
69
- "migrate:rollback": "npm run knex migrate:rollback",
70
- "migrate:rollback:all": "npm run knex migrate:rollback --all",
71
- "migrate:status": "npm run knex migrate:status",
72
- "seed:make": "npm run knex seed:make",
73
- "seed:run": "npm run knex seed:run",
74
- "db:dump": "node dist/cli.js db:dump",
75
- "db:export": "node dist/cli.js db:export"
76
- },
77
- "engines": {
78
- "node": ">=18.0.0"
79
- },
80
- "repository": {
81
- "type": "git",
82
- "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
83
- },
84
- "bugs": {
85
- "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
86
- },
87
- "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
88
- "keywords": [
89
- "mcp",
90
- "mcp-server",
91
- "model-context-protocol",
92
- "context-sharing",
93
- "claude-code",
94
- "sub-agents",
95
- "sqlite",
96
- "token-efficiency",
97
- "shared-context"
98
- ],
99
- "author": "sin5ddd",
100
- "license": "AGPL-3.0",
101
- "dependencies": {
102
- "@modelcontextprotocol/sdk": "^1.21.1",
103
- "better-sqlite3": "^12.4.1",
104
- "chokidar": "^4.0.3",
105
- "ignore": "^7.0.5",
106
- "knex": "^3.1.0",
107
- "knex-schema-inspector": "^3.1.0",
108
- "smol-toml": "^1.4.2"
109
- },
110
- "devDependencies": {
111
- "@types/better-sqlite3": "^7.6.0",
112
- "@types/knex": "^0.15.2",
113
- "@types/node": "^20.0.0",
114
- "husky": "^9.1.7",
115
- "mysql2": "^3.15.3",
116
- "pg": "^8.16.3",
117
- "rimraf": "^6.1.0",
118
- "tsx": "^4.20.6",
119
- "typescript": "^5.0.0"
120
- }
121
- }
1
+ {
2
+ "name": "sqlew",
3
+ "version": "3.9.1",
4
+ "description": "SQL Efficient Workflow - MCP server Provides consistency and token savings for AI coding",
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
+ "sqlew-init-commands": "dist/init-commands.js"
12
+ },
13
+ "files": [
14
+ "dist/",
15
+ "scripts/",
16
+ "assets/",
17
+ "docs/",
18
+ "README.md",
19
+ "LICENSE",
20
+ "CHANGELOG.md",
21
+ "MIGRATION_v2.md",
22
+ "ARCHITECTURE.md"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc",
26
+ "start": "node dist/index.js",
27
+ "cli": "node dist/cli.js",
28
+ "inspector": "npx @modelcontextprotocol/inspector node dist/index.js",
29
+ "dev": "tsc --watch",
30
+ "clean": "rimraf dist",
31
+ "rebuild": "npm run clean && npm run build",
32
+ "test": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
33
+ "test:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" \"src/tests/feature/decision/**/*.test.ts\" \"src/tests/feature/task/**/*.test.ts\" \"src/tests/feature/help/**/*.test.ts\" \"src/tests/database/**/*.test.ts\" \"src/tests/integration/**/*.test.ts\"",
34
+ "test:ci": "npm run build && npm test",
35
+ "test:vcs": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\" | node scripts/filter-test-output.js",
36
+ "test:vcs:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/vcs/**/*.test.ts\"",
37
+ "test:all": "node --test --test-force-exit --import tsx \"src/tests/**/*.test.ts\" | node scripts/filter-test-output.js",
38
+ "test:all:verbose": "node --test --experimental-test-coverage --test-force-exit --import tsx \"src/tests/**/*.test.ts\"",
39
+ "test:unit": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\" | node scripts/filter-test-output.js",
40
+ "test:unit:verbose": "node --test --test-force-exit --import tsx \"src/tests/unit/**/*.test.ts\"",
41
+ "test:feature": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\" | node scripts/filter-test-output.js",
42
+ "test:feature:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/**/*.test.ts\"",
43
+ "test:database": "node --test --test-force-exit --import tsx \"src/tests/database/**/*.test.ts\" | node scripts/filter-test-output.js",
44
+ "test:database:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/**/*.test.ts\"",
45
+ "test:integration": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\" | node scripts/filter-test-output.js",
46
+ "test:integration:verbose": "node --test --test-force-exit --import tsx \"src/tests/integration/**/*.test.ts\"",
47
+ "test:decision": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\" | node scripts/filter-test-output.js",
48
+ "test:decision:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/decision/**/*.test.ts\"",
49
+ "test:task": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\" | node scripts/filter-test-output.js",
50
+ "test:task:verbose": "node --test --test-force-exit --import tsx \"src/tests/feature/task/**/*.test.ts\"",
51
+ "test:migrations": "node --test --test-force-exit --import tsx \"src/tests/database/migrations/**/*.test.ts\" | node scripts/filter-test-output.js",
52
+ "test:migrations:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/migrations/**/*.test.ts\"",
53
+ "test:sql-dump": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\" | node scripts/filter-test-output.js",
54
+ "test:sql-dump:verbose": "node --test --test-force-exit --import tsx \"src/tests/database/sql-dump/**/*.test.ts\"",
55
+ "test:all-features": "npm run build && node dist/tests/integration/all-features.standalone.js",
56
+ "test:docker": "npm run build && node --test --test-force-exit dist/tests/docker/**/*.test.js",
57
+ "test:cross-db": "npm run build && node --test dist/tests/docker/cross-database.test.js",
58
+ "test:native": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js | node scripts/filter-test-output.js",
59
+ "test:native:verbose": "npm run build && node --test --test-concurrency=1 --test-force-exit dist/tests/docker/native/**/*.test.js",
60
+ "test:migration-upgrade-paths": "npm run build && node --test dist/tests/database/migrations/upgrade-paths.test.js",
61
+ "test:migration-idempotency": "npm run build && node --test dist/tests/database/migrations/idempotency.test.js",
62
+ "test:migrations:all": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
63
+ "test:migrations:ci": "npm run build && node dist/tests/migrations/test-all-versions-real.js",
64
+ "prepare": "husky",
65
+ "prepublishOnly": "npm run rebuild",
66
+ "knex": "npx tsx node_modules/knex/bin/cli.js --knexfile src/knexfile.ts",
67
+ "migrate:make": "npm run knex migrate:make",
68
+ "migrate:latest": "npm run knex migrate:latest",
69
+ "migrate:rollback": "npm run knex migrate:rollback",
70
+ "migrate:rollback:all": "npm run knex migrate:rollback --all",
71
+ "migrate:status": "npm run knex migrate:status",
72
+ "seed:make": "npm run knex seed:make",
73
+ "seed:run": "npm run knex seed:run",
74
+ "db:dump": "node dist/cli.js db:dump",
75
+ "db:export": "node dist/cli.js db:export"
76
+ },
77
+ "engines": {
78
+ "node": ">=18.0.0"
79
+ },
80
+ "repository": {
81
+ "type": "git",
82
+ "url": "git+https://github.com/sin5ddd/mcp-sqlew.git"
83
+ },
84
+ "bugs": {
85
+ "url": "https://github.com/sin5ddd/mcp-sqlew/issues"
86
+ },
87
+ "homepage": "https://github.com/sin5ddd/mcp-sqlew#readme",
88
+ "keywords": [
89
+ "mcp",
90
+ "mcp-server",
91
+ "model-context-protocol",
92
+ "context-sharing",
93
+ "claude-code",
94
+ "sub-agents",
95
+ "sqlite",
96
+ "token-efficiency",
97
+ "shared-context"
98
+ ],
99
+ "author": "sin5ddd",
100
+ "license": "AGPL-3.0",
101
+ "dependencies": {
102
+ "@modelcontextprotocol/sdk": "^1.21.1",
103
+ "better-sqlite3": "^12.4.1",
104
+ "chokidar": "^4.0.3",
105
+ "ignore": "^7.0.5",
106
+ "knex": "^3.1.0",
107
+ "knex-schema-inspector": "^3.1.0",
108
+ "mysql2": "^3.15.3",
109
+ "pg": "^8.16.3",
110
+ "smol-toml": "^1.4.2"
111
+ },
112
+ "devDependencies": {
113
+ "@types/better-sqlite3": "^7.6.0",
114
+ "@types/knex": "^0.15.2",
115
+ "@types/node": "^20.0.0",
116
+ "husky": "^9.1.7",
117
+ "rimraf": "^6.1.0",
118
+ "tsx": "^4.20.6",
119
+ "typescript": "^5.0.0"
120
+ }
121
+ }