@carllee1983/dbcli 0.5.2-beta → 1.1.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.
- package/CHANGELOG.md +108 -5
- package/README.md +73 -5
- package/assets/SKILL.md +72 -2
- package/dist/cli.mjs +46127 -44315
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carllee1983/dbcli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Database CLI for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"publishConfig": {
|
|
@@ -43,11 +43,14 @@
|
|
|
43
43
|
],
|
|
44
44
|
"scripts": {
|
|
45
45
|
"dev": "bun run src/cli.ts",
|
|
46
|
-
"build": "bun
|
|
46
|
+
"build": "bun run scripts/build.ts",
|
|
47
47
|
"prepublishOnly": "bun run build",
|
|
48
|
-
"test": "
|
|
48
|
+
"test": "bun test",
|
|
49
|
+
"test:unit": "bun test tests/unit tests/core",
|
|
50
|
+
"test:integration": "bun test tests/integration",
|
|
51
|
+
"test:docker": "docker compose -f docker-compose.test.yml up -d --wait && bun test tests/integration/adapters; docker compose -f docker-compose.test.yml down",
|
|
49
52
|
"test:run": "vitest --run",
|
|
50
|
-
"test:bench": "vitest --run
|
|
53
|
+
"test:bench": "vitest bench --run",
|
|
51
54
|
"bench": "bun run test:bench",
|
|
52
55
|
"lint": "eslint src tests --ext .ts",
|
|
53
56
|
"lint:fix": "eslint src tests --ext .ts --fix",
|