@hasna/configs 0.1.2 → 0.1.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/dist/cli/index.js CHANGED
@@ -3008,7 +3008,8 @@ function extractTemplateVars(content) {
3008
3008
  }
3009
3009
 
3010
3010
  // src/cli/index.tsx
3011
- var pkg = { version: "0.1.0" };
3011
+ import { createRequire } from "module";
3012
+ var pkg = createRequire(import.meta.url)("../../package.json");
3012
3013
  function fmtConfig(c, format) {
3013
3014
  if (format === "json")
3014
3015
  return JSON.stringify(c, null, 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hasna/configs",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "AI coding agent configuration manager — store, version, apply, and share all your AI coding configs. CLI + MCP + REST API + Dashboard.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",