@xanots/sdk 0.0.3-beta.0 → 0.0.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.
Files changed (36) hide show
  1. package/README.md +1 -1
  2. package/dist/.build-fingerprint +1 -1
  3. package/dist/{agent-file-refresh-J3KY54E5.js → agent-file-refresh-6M5M7T24.js} +3 -3
  4. package/dist/bin.js +3 -3
  5. package/dist/{chunk-CBL57QBQ.js → chunk-2V4YE6QC.js} +6 -6
  6. package/dist/{chunk-VVXPK6SE.js → chunk-3NFUWXOC.js} +24 -16
  7. package/dist/{chunk-FY6LXRR6.js → chunk-6USV65XA.js} +2 -2
  8. package/dist/{chunk-MWLNBSTY.js → chunk-BT2CSEC5.js} +2 -2
  9. package/dist/{chunk-WRYT2PAX.js → chunk-CMZLPTGW.js} +24 -36
  10. package/dist/{chunk-QO4I5OYF.js → chunk-DYCLVQXW.js} +12 -3
  11. package/dist/{chunk-4HKZH6YK.js → chunk-HQ2CBRVI.js} +230 -7
  12. package/dist/{chunk-HKAX756N.js → chunk-W2G2WPTB.js} +3 -3
  13. package/dist/chunk-WUSKBXXD.js +25 -0
  14. package/dist/{chunk-EWFHDJY5.js → chunk-ZO3HJOCJ.js} +2 -2
  15. package/dist/cli.d.ts +9 -0
  16. package/dist/cli.js +3 -3
  17. package/dist/{codegen-command-EXLKZ2ZI.js → codegen-command-FIADGXRN.js} +8 -8
  18. package/dist/{completion-2PVZK6YX.js → completion-BKAFCZBE.js} +2 -2
  19. package/dist/{deploy-command-SXX6RJWM.js → deploy-command-4R6BYC6G.js} +7 -7
  20. package/dist/{env-target-3EGIPR4D.js → env-target-XWS2ZZ2Y.js} +2 -2
  21. package/dist/{ephemeral-command-OGOYP7D6.js → ephemeral-command-JL4TPIRQ.js} +5 -5
  22. package/dist/{init-command-6DGXEVZD.js → init-command-LOK75W64.js} +7 -7
  23. package/dist/internal.js +4 -3
  24. package/dist/{lock-commands-R22J54XV.js → lock-commands-XOYS75YQ.js} +4 -4
  25. package/dist/{marketplace-command-XJIWL4YP.js → marketplace-command-UVV3XAOL.js} +4 -4
  26. package/dist/node.js +3 -3
  27. package/dist/{release-command-6PLMLGDK.js → release-command-HZUY2XZX.js} +8 -8
  28. package/dist/{test-command-LLPXKT35.js → test-command-72Y5S22H.js} +4 -4
  29. package/dist/{validate-command-WAT3ZJT3.js → validate-command-KDGH537H.js} +5 -5
  30. package/dist/{workspace-command-JKMI7RZ4.js → workspace-command-ICSI6PKO.js} +8 -8
  31. package/llms/kinds-agent-mcp.md +2 -1
  32. package/llms-full.txt +3 -2
  33. package/llms.txt +1 -1
  34. package/manifest.json +5 -1
  35. package/package.json +1 -1
  36. package/dist/chunk-47WDWMBJ.js +0 -14
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xanots",
3
- "version": "0.0.3-beta.0",
3
+ "version": "0.0.3",
4
4
  "description": "TypeScript SDK that compiles a typed Xano workspace into the importable packageExport JSON bundle.",
5
5
  "coverage": {
6
6
  "objectKinds": {
@@ -8996,6 +8996,10 @@
8996
8996
  {
8997
8997
  "flag": "--no-install",
8998
8998
  "description": "Skip the post-scaffold npm install"
8999
+ },
9000
+ {
9001
+ "flag": "--marketplace <pkgs>",
9002
+ "description": "Add-on packages to install and register, comma-separated"
8999
9003
  }
9000
9004
  ],
9001
9005
  "description": "Scaffold a new XanoTS project"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xanots/sdk",
3
- "version": "0.0.3-beta.0",
3
+ "version": "0.0.3",
4
4
  "description": "XanoTS — your Xano backend as TypeScript. `xanots deploy` ships your typed workspace (and an optional static frontend) to a live, auto-expiring ephemeral environment and prints its URL. init → deploy → URL.",
5
5
  "keywords": [
6
6
  "xanots",
@@ -1,14 +0,0 @@
1
- // src/emit/npm.ts
2
- import { spawnSync } from "child_process";
3
- function npmBinary() {
4
- return process.platform === "win32" ? "npm.cmd" : "npm";
5
- }
6
- function runNpm(args, cwd) {
7
- const res = spawnSync(npmBinary(), [...args], { cwd, stdio: "inherit" });
8
- return res.status ?? 1;
9
- }
10
-
11
- export {
12
- runNpm
13
- };
14
- //# sourceMappingURL=chunk-47WDWMBJ.js.map