@devflow-tools/cli 0.5.0 → 0.7.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.
Files changed (48) hide show
  1. package/dist/commands/context.d.ts +2 -0
  2. package/dist/commands/context.d.ts.map +1 -1
  3. package/dist/commands/context.js +11 -0
  4. package/dist/commands/context.js.map +1 -1
  5. package/dist/commands/dashboard.d.ts +3 -0
  6. package/dist/commands/dashboard.d.ts.map +1 -0
  7. package/dist/commands/dashboard.js +44 -0
  8. package/dist/commands/dashboard.js.map +1 -0
  9. package/dist/commands/init.d.ts +3 -0
  10. package/dist/commands/init.d.ts.map +1 -1
  11. package/dist/commands/init.js +51 -1
  12. package/dist/commands/init.js.map +1 -1
  13. package/dist/commands/plugin/install.d.ts +3 -0
  14. package/dist/commands/plugin/install.d.ts.map +1 -0
  15. package/dist/commands/plugin/install.js +22 -0
  16. package/dist/commands/plugin/install.js.map +1 -0
  17. package/dist/commands/plugin/list.d.ts +3 -0
  18. package/dist/commands/plugin/list.d.ts.map +1 -0
  19. package/dist/commands/plugin/list.js +47 -0
  20. package/dist/commands/plugin/list.js.map +1 -0
  21. package/dist/commands/plugin/search.d.ts +3 -0
  22. package/dist/commands/plugin/search.d.ts.map +1 -0
  23. package/dist/commands/plugin/search.js +29 -0
  24. package/dist/commands/plugin/search.js.map +1 -0
  25. package/dist/commands/plugin/uninstall.d.ts +3 -0
  26. package/dist/commands/plugin/uninstall.d.ts.map +1 -0
  27. package/dist/commands/plugin/uninstall.js +21 -0
  28. package/dist/commands/plugin/uninstall.js.map +1 -0
  29. package/dist/commands/plugin-guide.d.ts +19 -0
  30. package/dist/commands/plugin-guide.d.ts.map +1 -0
  31. package/dist/commands/plugin-guide.js +131 -0
  32. package/dist/commands/plugin-guide.js.map +1 -0
  33. package/dist/commands/server.js +1 -1
  34. package/dist/commands/server.js.map +1 -1
  35. package/dist/index.js +112 -35
  36. package/dist/index.js.map +1 -1
  37. package/dist/lib/dashboard-cache.d.ts +13 -0
  38. package/dist/lib/dashboard-cache.d.ts.map +1 -0
  39. package/dist/lib/dashboard-cache.js +152 -0
  40. package/dist/lib/dashboard-cache.js.map +1 -0
  41. package/dist/lib/plugin-registry.d.ts +18 -0
  42. package/dist/lib/plugin-registry.d.ts.map +1 -0
  43. package/dist/lib/plugin-registry.js +39 -0
  44. package/dist/lib/plugin-registry.js.map +1 -0
  45. package/dist/lib/with-server.js +1 -1
  46. package/dist/lib/with-server.js.map +1 -1
  47. package/dist/plugin-files/package.json +2 -2
  48. package/package.json +25 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devflow-tools/cli",
3
- "version": "0.5.0",
3
+ "version": "0.7.0",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {
@@ -15,28 +15,29 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@colbymchenry/codegraph": "^1.1.1",
18
- "@devflow-tools/adapters": "^0.5.0",
19
- "@devflow-tools/benchmark": "^0.5.0",
20
- "@devflow-tools/context-engine": "^0.5.0",
21
- "@devflow-tools/knowledge-engine": "^0.5.0",
22
- "@devflow-tools/mcp-server": "^0.5.0",
23
- "@devflow-tools/memory-engine": "^0.5.0",
24
- "@devflow-tools/plugin-animation": "^0.5.0",
25
- "@devflow-tools/plugin-css": "^0.5.0",
26
- "@devflow-tools/plugin-docker": "^0.5.0",
27
- "@devflow-tools/plugin-electron": "^0.5.0",
28
- "@devflow-tools/plugin-git": "^0.5.0",
29
- "@devflow-tools/plugin-graphql": "^0.5.0",
30
- "@devflow-tools/plugin-nest": "^0.5.0",
31
- "@devflow-tools/plugin-nextjs": "^0.5.0",
32
- "@devflow-tools/plugin-performance": "^0.5.0",
33
- "@devflow-tools/plugin-react": "^0.5.0",
34
- "@devflow-tools/plugin-tailwind": "^0.5.0",
35
- "@devflow-tools/plugin-taro": "^0.5.0",
36
- "@devflow-tools/plugin-ui-layout": "^0.5.0",
37
- "@devflow-tools/plugin-vue": "^0.5.0",
38
- "@devflow-tools/sdk": "^0.5.0",
39
- "@devflow-tools/workflow-engine": "^0.5.0",
18
+ "@devflow-tools/adapters": "^0.7.0",
19
+ "@devflow-tools/benchmark": "^0.7.0",
20
+ "@devflow-tools/context-engine": "^0.7.0",
21
+ "@devflow-tools/knowledge-engine": "^0.7.0",
22
+ "@devflow-tools/mcp-server": "^0.7.0",
23
+ "@devflow-tools/memory-engine": "^0.7.0",
24
+ "@devflow-tools/plugin-animation": "^0.7.0",
25
+ "@devflow-tools/plugin-css": "^0.7.0",
26
+ "@devflow-tools/plugin-docker": "^0.7.0",
27
+ "@devflow-tools/plugin-electron": "^0.7.0",
28
+ "@devflow-tools/plugin-git": "^0.7.0",
29
+ "@devflow-tools/plugin-graphql": "^0.7.0",
30
+ "@devflow-tools/plugin-nest": "^0.7.0",
31
+ "@devflow-tools/plugin-nextjs": "^0.7.0",
32
+ "@devflow-tools/plugin-performance": "^0.7.0",
33
+ "@devflow-tools/plugin-react": "^0.7.0",
34
+ "@devflow-tools/plugin-tailwind": "^0.7.0",
35
+ "@devflow-tools/plugin-taro": "^0.7.0",
36
+ "@devflow-tools/plugin-ui-layout": "^0.7.0",
37
+ "@devflow-tools/plugin-vue": "^0.7.0",
38
+ "@devflow-tools/sdk": "^0.7.0",
39
+ "@devflow-tools/workflow-engine": "^0.7.0",
40
+ "@inquirer/prompts": "^7.10.1",
40
41
  "chalk": "^5.3.0",
41
42
  "commander": "^12.0.0"
42
43
  },
@@ -48,5 +49,5 @@
48
49
  "dist",
49
50
  "bin"
50
51
  ],
51
- "gitHead": "431c0f26e14d476c08d543ef5cd65367413dbc98"
52
+ "gitHead": "2d52bb1401b6501a527cac7de0f664c18bf60dcf"
52
53
  }