@beekeeperstudio/bks-ai-shell 3.0.4

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 (33) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +39 -0
  3. package/dist/assets/index-CzOKbg5t.js +2146 -0
  4. package/dist/assets/index-CzOKbg5t.js.map +1 -0
  5. package/dist/assets/index-DDqz6npp.css +1 -0
  6. package/dist/assets/material-symbols-outlined-CBOkUIHX.woff2 +0 -0
  7. package/dist/assets/roboto-latin-100-B3mHgoOJ.woff +0 -0
  8. package/dist/assets/roboto-latin-100-BJNx9A77.woff2 +0 -0
  9. package/dist/assets/roboto-latin-100italic-Bjs4D596.woff +0 -0
  10. package/dist/assets/roboto-latin-100italic-DkGpOhj0.woff2 +0 -0
  11. package/dist/assets/roboto-latin-300-Cx9SeV6m.woff +0 -0
  12. package/dist/assets/roboto-latin-300-EvKWBL9d.woff2 +0 -0
  13. package/dist/assets/roboto-latin-300italic-CYatNKLh.woff2 +0 -0
  14. package/dist/assets/roboto-latin-300italic-Uxw9HR3T.woff +0 -0
  15. package/dist/assets/roboto-latin-400-CEEi-WbQ.woff2 +0 -0
  16. package/dist/assets/roboto-latin-400-CKhRtUFO.woff +0 -0
  17. package/dist/assets/roboto-latin-400italic-B7WW6HdJ.woff +0 -0
  18. package/dist/assets/roboto-latin-400italic-DRWWNyaf.woff2 +0 -0
  19. package/dist/assets/roboto-latin-500-BU-otfqs.woff +0 -0
  20. package/dist/assets/roboto-latin-500-DRg8azjQ.woff2 +0 -0
  21. package/dist/assets/roboto-latin-500italic-CAWXcheQ.woff2 +0 -0
  22. package/dist/assets/roboto-latin-500italic-DC3lxgcN.woff +0 -0
  23. package/dist/assets/roboto-latin-700-CCwTn0--.woff +0 -0
  24. package/dist/assets/roboto-latin-700-CqGedB_1.woff2 +0 -0
  25. package/dist/assets/roboto-latin-700italic-C5p_YAqY.woff2 +0 -0
  26. package/dist/assets/roboto-latin-700italic-DXbHVVaQ.woff +0 -0
  27. package/dist/assets/roboto-latin-900-BEowQPyJ.woff2 +0 -0
  28. package/dist/assets/roboto-latin-900-Blac3EU0.woff +0 -0
  29. package/dist/assets/roboto-latin-900italic-DBp_g5Ww.woff2 +0 -0
  30. package/dist/assets/roboto-latin-900italic-uSnr6All.woff +0 -0
  31. package/dist/index.html +14 -0
  32. package/manifest.json +35 -0
  33. package/package.json +64 -0
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>AI Shell Plugin</title>
7
+ <style id="app-theme"></style>
8
+ <script type="module" crossorigin src="./assets/index-CzOKbg5t.js"></script>
9
+ <link rel="stylesheet" crossorigin href="./assets/index-DDqz6npp.css">
10
+ </head>
11
+ <body>
12
+ <div id="app"></div>
13
+ </body>
14
+ </html>
package/manifest.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "id": "bks-ai-shell",
3
+ "name": "AI Shell",
4
+ "version": "3.0.4",
5
+ "minAppVersion": "5.4.0",
6
+ "description": "Ask AI to analyze your database and generate SQL queries.",
7
+ "author": {
8
+ "name": "Beekeeper Studio",
9
+ "url": "https://beekeeperstudio.io"
10
+ },
11
+ "icon": "auto_awesome",
12
+ "manifestVersion": 0,
13
+ "capabilities": {
14
+ "views": {
15
+ "tabTypes": [
16
+ {
17
+ "id": "bks-ai-shell",
18
+ "name": "AI Shell",
19
+ "kind": "shell",
20
+ "entry": "dist/index.html"
21
+ }
22
+ ]
23
+ },
24
+ "menu": [
25
+ {
26
+ "command": "new-tab-dropdown-item",
27
+ "name": "Add AI Shell",
28
+ "description": "Open a new AI Shell tab.",
29
+ "view": "bks-ai-shell",
30
+ "placement": "newTabDropdown"
31
+ }
32
+ ]
33
+ },
34
+ "permissions": []
35
+ }
package/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "@beekeeperstudio/bks-ai-shell",
3
+ "version": "3.0.4",
4
+ "description": "A Beekeeper Studio plugin for analyzing database and generate queries",
5
+ "license": "GPL-3.0",
6
+ "type": "module",
7
+ "main": "dist/main.js",
8
+ "styles": "dist/style.css",
9
+ "files": [
10
+ "dist",
11
+ "manifest.json"
12
+ ],
13
+ "scripts": {
14
+ "dev": "vite",
15
+ "build": "vue-tsc -b & vite build",
16
+ "preview": "vite preview",
17
+ "test": "vitest",
18
+ "test:run": "vitest run"
19
+ },
20
+ "devDependencies": {
21
+ "@ai-sdk/anthropic": "^3.0.9",
22
+ "@ai-sdk/google": "^3.0.6",
23
+ "@ai-sdk/openai": "^3.0.8",
24
+ "@ai-sdk/openai-compatible": "^2.0.4",
25
+ "@ai-sdk/vue": "^3.0.28",
26
+ "@beekeeperstudio/plugin": "^1.6.0",
27
+ "@beekeeperstudio/ui-kit": "0.3.1",
28
+ "@beekeeperstudio/vite-plugin": "^1.0.3",
29
+ "@langchain/core": "^0.3.61",
30
+ "@material-symbols/font-400": "^0.31.2",
31
+ "@pdanpdan/vue-keyboard-trap": "^1.2.0",
32
+ "@types/lodash": "^4.17.16",
33
+ "@types/pluralize": "^0.0.33",
34
+ "@types/semver": "^7.7.1",
35
+ "@vitejs/plugin-vue": "^5.0.4",
36
+ "@vitest/browser": "^3.2.4",
37
+ "@vue/test-utils": "^2.4.6",
38
+ "@vue/tsconfig": "^0.8.1",
39
+ "ai": "^6.0.28",
40
+ "happy-dom": "^18.0.1",
41
+ "highlight.js": "^11.11.1",
42
+ "langchain": "^0.3.19",
43
+ "lodash": "^4.17.21",
44
+ "marked": "^15.0.12",
45
+ "marked-highlight": "^2.2.1",
46
+ "mitt": "^3.0.1",
47
+ "ollama-ai-provider-v2": "^1.3.1",
48
+ "pinia": "^3.0.2",
49
+ "pluralize": "^8.0.0",
50
+ "primevue": "^4.4.1",
51
+ "sass": "^1.87.0",
52
+ "semver": "^7.7.3",
53
+ "sql-query-identifier": "^2.8.0",
54
+ "typeface-roboto": "^0.0.75",
55
+ "typescript": "~5.9.3",
56
+ "vite": "^6.2.3",
57
+ "vite-plugin-vue-devtools": "^8.0.5",
58
+ "vitest": "^3.2.4",
59
+ "vitest-browser-vue": "^1.1.0",
60
+ "vue": "^3.4.21",
61
+ "vue-tsc": "^3.1.0",
62
+ "zod": "^4.1.8"
63
+ }
64
+ }