gitsheets-axi 1.3.1 → 1.4.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/README.md +11 -5
- package/dist/src/cli.d.ts +1 -1
- package/dist/src/cli.d.ts.map +1 -1
- package/dist/src/cli.js +6 -3
- package/dist/src/cli.js.map +1 -1
- package/dist/src/commands/setup.d.ts +4 -0
- package/dist/src/commands/setup.d.ts.map +1 -0
- package/dist/src/commands/setup.js +34 -0
- package/dist/src/commands/setup.js.map +1 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Same underlying library as the human `gitsheets` CLI, different ergonomics:
|
|
|
7
7
|
- **TOON output** by default — ~40% fewer tokens than equivalent JSON
|
|
8
8
|
- **Idempotent mutations** — re-running with unchanged state returns `result: "no-op"`, no commit
|
|
9
9
|
- **Errors on stdout** with stable codes and actionable hints
|
|
10
|
-
- **
|
|
10
|
+
- **Opt-in session hooks** for Claude Code, Codex, and OpenCode (`gitsheets-axi setup hooks`)
|
|
11
11
|
|
|
12
12
|
```bash
|
|
13
13
|
npm install -g gitsheets-axi
|
|
@@ -44,6 +44,7 @@ gitsheets-axi infer <sheet>
|
|
|
44
44
|
gitsheets-axi migrate-config <sheet>
|
|
45
45
|
gitsheets-axi attachment <list|get|set|delete> <sheet> <path> [<name>]
|
|
46
46
|
gitsheets-axi push [--remote r] [--branch b]
|
|
47
|
+
gitsheets-axi setup hooks
|
|
47
48
|
```
|
|
48
49
|
|
|
49
50
|
Run any command with `--help` for its flags + examples. Every command runs `--help` against itself, not the top-level manual.
|
|
@@ -67,14 +68,19 @@ path: jane
|
|
|
67
68
|
|
|
68
69
|
## Session hooks
|
|
69
70
|
|
|
70
|
-
|
|
71
|
+
Hooks are **opt-in** — nothing is installed implicitly. Run the explicit installer once:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
gitsheets-axi setup hooks
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
This installs `SessionStart` hooks into:
|
|
71
78
|
|
|
72
79
|
- **Claude Code** — `~/.claude/settings.json`
|
|
73
80
|
- **Codex** — `~/.codex/hooks.json` + `[features].hooks = true` in `config.toml`
|
|
81
|
+
- **OpenCode**
|
|
74
82
|
|
|
75
|
-
The hook runs the bare home view at every session start, so the agent sees the current repo's sheets in its initial context.
|
|
76
|
-
|
|
77
|
-
Set `GITSHEETS_AXI_DISABLE_HOOKS=1` to suppress installation.
|
|
83
|
+
The hook runs the bare home view at every session start, so the agent sees the current repo's sheets in its initial context. `setup hooks` is **idempotent and self-repairing** — re-running re-checks each hook's binary path and updates it if the executable moved (reinstall, asdf version change, etc.). Restart your agent session after installing to pick up the ambient context.
|
|
78
84
|
|
|
79
85
|
## Output: TOON
|
|
80
86
|
|
package/dist/src/cli.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export declare const TOP_HELP = "usage: gitsheets-axi [command] [args] [flags]\ncommands[
|
|
1
|
+
export declare const TOP_HELP = "usage: gitsheets-axi [command] [args] [flags]\ncommands[16]:\n (none)=home, sheets, query, read,\n upsert, patch, delete,\n check, diff, normalize,\n init, infer, migrate-config,\n attachment, push, setup\nflags[2]:\n --help, -v/-V/--version\nexamples:\n gitsheets-axi\n gitsheets-axi query users --filter status=active\n gitsheets-axi upsert users --data '{\"slug\":\"jane\",\"email\":\"jane@x.org\"}'\n gitsheets-axi patch users '{\"slug\":\"jane\"}' --patch '{\"name\":\"Jane\"}'\n gitsheets-axi check users users/jane.toml --fix\n gitsheets-axi diff posts HEAD~10\n gitsheets-axi normalize users\n gitsheets-axi init users\n gitsheets-axi infer users\n gitsheets-axi attachment list users jane\n gitsheets-axi push\n gitsheets-axi setup hooks\n";
|
|
2
2
|
export declare function main(): Promise<void>;
|
|
3
3
|
//# sourceMappingURL=cli.d.ts.map
|
package/dist/src/cli.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AA6BA,eAAO,MAAM,QAAQ,mwBAsBpB,CAAC;AAwCF,wBAAsB,IAAI,IAAI,OAAO,CAAC,IAAI,CAAC,CAa1C"}
|
package/dist/src/cli.js
CHANGED
|
@@ -18,16 +18,17 @@ import { inferCommand, INFER_HELP } from './commands/infer.js';
|
|
|
18
18
|
import { migrateConfigCommand, MIGRATE_CONFIG_HELP } from './commands/migrate-config.js';
|
|
19
19
|
import { attachmentCommand, ATTACHMENT_HELP } from './commands/attachment.js';
|
|
20
20
|
import { pushCommand, PUSH_HELP } from './commands/push.js';
|
|
21
|
+
import { setupCommand, SETUP_HELP } from './commands/setup.js';
|
|
21
22
|
const DESCRIPTION = 'gitsheets — agent-facing interface for the git-backed document store. ' +
|
|
22
23
|
'Token-efficient TOON output, idempotent mutations, format-aware schemas.';
|
|
23
24
|
const VERSION = readPackageVersion();
|
|
24
25
|
export const TOP_HELP = `usage: gitsheets-axi [command] [args] [flags]
|
|
25
|
-
commands[
|
|
26
|
+
commands[16]:
|
|
26
27
|
(none)=home, sheets, query, read,
|
|
27
28
|
upsert, patch, delete,
|
|
28
29
|
check, diff, normalize,
|
|
29
30
|
init, infer, migrate-config,
|
|
30
|
-
attachment, push
|
|
31
|
+
attachment, push, setup
|
|
31
32
|
flags[2]:
|
|
32
33
|
--help, -v/-V/--version
|
|
33
34
|
examples:
|
|
@@ -42,6 +43,7 @@ examples:
|
|
|
42
43
|
gitsheets-axi infer users
|
|
43
44
|
gitsheets-axi attachment list users jane
|
|
44
45
|
gitsheets-axi push
|
|
46
|
+
gitsheets-axi setup hooks
|
|
45
47
|
`;
|
|
46
48
|
const COMMAND_HELP = {
|
|
47
49
|
sheets: SHEETS_HELP,
|
|
@@ -58,6 +60,7 @@ const COMMAND_HELP = {
|
|
|
58
60
|
'migrate-config': MIGRATE_CONFIG_HELP,
|
|
59
61
|
attachment: ATTACHMENT_HELP,
|
|
60
62
|
push: PUSH_HELP,
|
|
63
|
+
setup: SETUP_HELP,
|
|
61
64
|
};
|
|
62
65
|
const COMMANDS = {
|
|
63
66
|
sheets: sheetsCommand,
|
|
@@ -74,13 +77,13 @@ const COMMANDS = {
|
|
|
74
77
|
'migrate-config': migrateConfigCommand,
|
|
75
78
|
attachment: attachmentCommand,
|
|
76
79
|
push: pushCommand,
|
|
80
|
+
setup: setupCommand,
|
|
77
81
|
};
|
|
78
82
|
export async function main() {
|
|
79
83
|
await runAxiCli({
|
|
80
84
|
description: DESCRIPTION,
|
|
81
85
|
version: VERSION,
|
|
82
86
|
topLevelHelp: TOP_HELP,
|
|
83
|
-
...(process.env.GITSHEETS_AXI_DISABLE_HOOKS === '1' ? { hooks: false } : {}),
|
|
84
87
|
resolveContext: () => createContext(),
|
|
85
88
|
home: (_args, ctx) => homeCommand(ctx),
|
|
86
89
|
commands: COMMANDS,
|
package/dist/src/cli.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,aAAa,EAAyB,MAAM,cAAc,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"cli.js","sourceRoot":"","sources":["../../src/cli.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACnD,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAEvC,OAAO,EAAE,aAAa,EAAyB,MAAM,cAAc,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AACjD,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AAClE,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,oBAAoB,EAAE,mBAAmB,EAAE,MAAM,8BAA8B,CAAC;AACzF,OAAO,EAAE,iBAAiB,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAC;AAC9E,OAAO,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,oBAAoB,CAAC;AAC5D,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,qBAAqB,CAAC;AAE/D,MAAM,WAAW,GACf,wEAAwE;IACxE,0EAA0E,CAAC;AAE7E,MAAM,OAAO,GAAG,kBAAkB,EAAE,CAAC;AAErC,MAAM,CAAC,MAAM,QAAQ,GAAG;;;;;;;;;;;;;;;;;;;;;;CAsBvB,CAAC;AAEF,MAAM,YAAY,GAA2B;IAC3C,MAAM,EAAE,WAAW;IACnB,KAAK,EAAE,UAAU;IACjB,IAAI,EAAE,SAAS;IACf,MAAM,EAAE,WAAW;IACnB,KAAK,EAAE,UAAU;IACjB,MAAM,EAAE,WAAW;IACnB,KAAK,EAAE,UAAU;IACjB,IAAI,EAAE,SAAS;IACf,SAAS,EAAE,cAAc;IACzB,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,UAAU;IACjB,gBAAgB,EAAE,mBAAmB;IACrC,UAAU,EAAE,eAAe;IAC3B,IAAI,EAAE,SAAS;IACf,KAAK,EAAE,UAAU;CAClB,CAAC;AAIF,MAAM,QAAQ,GAA8B;IAC1C,MAAM,EAAE,aAAa;IACrB,KAAK,EAAE,YAAY;IACnB,IAAI,EAAE,WAAW;IACjB,MAAM,EAAE,aAAa;IACrB,KAAK,EAAE,YAAY;IACnB,MAAM,EAAE,aAAa;IACrB,KAAK,EAAE,YAAY;IACnB,IAAI,EAAE,WAAW;IACjB,SAAS,EAAE,gBAAgB;IAC3B,IAAI,EAAE,WAAW;IACjB,KAAK,EAAE,YAAY;IACnB,gBAAgB,EAAE,oBAAoB;IACtC,UAAU,EAAE,iBAAiB;IAC7B,IAAI,EAAE,WAAW;IACjB,KAAK,EAAE,YAAY;CACpB,CAAC;AAEF,MAAM,CAAC,KAAK,UAAU,IAAI;IACxB,MAAM,SAAS,CAAmB;QAChC,WAAW,EAAE,WAAW;QACxB,OAAO,EAAE,OAAO;QAChB,YAAY,EAAE,QAAQ;QACtB,cAAc,EAAE,GAAG,EAAE,CAAC,aAAa,EAAE;QACrC,IAAI,EAAE,CAAC,KAAK,EAAE,GAAG,EAAE,EAAE,CAAC,WAAW,CAAC,GAAuB,CAAC;QAC1D,QAAQ,EAAE,QAGT;QACD,cAAc,EAAE,CAAC,OAAO,EAAE,EAAE,CAAC,YAAY,CAAC,OAAO,CAAC;KACnD,CAAC,CAAC;AACL,CAAC;AAED,SAAS,kBAAkB;IACzB,MAAM,IAAI,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;IAErD,KAAK,MAAM,SAAS,IAAI;QACtB,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC;QAChC,IAAI,CAAC,IAAI,EAAE,IAAI,EAAE,IAAI,EAAE,cAAc,CAAC;KACvC,EAAE,CAAC;QACF,IAAI,CAAC,UAAU,CAAC,SAAS,CAAC;YAAE,SAAS;QAErC,MAAM,MAAM,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,SAAS,EAAE,OAAO,CAAC,CAEzD,CAAC;QACF,IAAI,OAAO,MAAM,CAAC,OAAO,KAAK,QAAQ,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACpE,OAAO,MAAM,CAAC,OAAO,CAAC;QACxB,CAAC;IACH,CAAC;IAED,MAAM,IAAI,KAAK,CAAC,mDAAmD,CAAC,CAAC;AACvE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import type { GitsheetsContext } from '../context.js';
|
|
2
|
+
export declare const SETUP_HELP = "usage: gitsheets-axi setup hooks\nInstall or repair agent SessionStart hooks so each session starts with gitsheets-axi's\nhome view (the current repo's sheets) as ambient context. Idempotent; repairs a stale\nexecutable path.\nexamples:\n gitsheets-axi setup hooks";
|
|
3
|
+
export declare function setupCommand(args: string[], _ctx?: GitsheetsContext): Promise<string>;
|
|
4
|
+
//# sourceMappingURL=setup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setup.d.ts","sourceRoot":"","sources":["../../../src/commands/setup.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAGtD,eAAO,MAAM,UAAU,8QAKK,CAAC;AAE7B,wBAAsB,YAAY,CAChC,IAAI,EAAE,MAAM,EAAE,EACd,IAAI,CAAC,EAAE,gBAAgB,GACtB,OAAO,CAAC,MAAM,CAAC,CA4BjB"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { AxiError, installSessionStartHooks } from 'axi-sdk-js';
|
|
2
|
+
import { joinBlocks, renderHelp, renderObject } from '../output/render.js';
|
|
3
|
+
export const SETUP_HELP = `usage: gitsheets-axi setup hooks
|
|
4
|
+
Install or repair agent SessionStart hooks so each session starts with gitsheets-axi's
|
|
5
|
+
home view (the current repo's sheets) as ambient context. Idempotent; repairs a stale
|
|
6
|
+
executable path.
|
|
7
|
+
examples:
|
|
8
|
+
gitsheets-axi setup hooks`;
|
|
9
|
+
export async function setupCommand(args, _ctx) {
|
|
10
|
+
if (args.includes('--help'))
|
|
11
|
+
return SETUP_HELP;
|
|
12
|
+
if (args[0] !== 'hooks') {
|
|
13
|
+
throw new AxiError(`Unknown setup action: ${args[0] ?? '(none)'}`, 'VALIDATION_ERROR', [
|
|
14
|
+
'Run `gitsheets-axi setup hooks`',
|
|
15
|
+
]);
|
|
16
|
+
}
|
|
17
|
+
const errors = [];
|
|
18
|
+
installSessionStartHooks({
|
|
19
|
+
marker: 'gitsheets-axi',
|
|
20
|
+
timeoutSeconds: 10,
|
|
21
|
+
onError: (m) => errors.push(m),
|
|
22
|
+
});
|
|
23
|
+
if (errors.length > 0) {
|
|
24
|
+
throw new AxiError('Hook installation reported problems', 'HOOK_INSTALL_FAILED', errors);
|
|
25
|
+
}
|
|
26
|
+
return joinBlocks(renderObject({
|
|
27
|
+
hooks: {
|
|
28
|
+
status: 'installed',
|
|
29
|
+
integrations: 'Claude Code, Codex, OpenCode',
|
|
30
|
+
marker: 'gitsheets-axi',
|
|
31
|
+
},
|
|
32
|
+
}), renderHelp(['Restart your agent session to receive gitsheets-axi ambient context']));
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=setup.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/commands/setup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,wBAAwB,EAAE,MAAM,YAAY,CAAC;AAGhE,OAAO,EAAE,UAAU,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,qBAAqB,CAAC;AAE3E,MAAM,CAAC,MAAM,UAAU,GAAG;;;;;4BAKE,CAAC;AAE7B,MAAM,CAAC,KAAK,UAAU,YAAY,CAChC,IAAc,EACd,IAAuB;IAEvB,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC;QAAE,OAAO,UAAU,CAAC;IAC/C,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,OAAO,EAAE,CAAC;QACxB,MAAM,IAAI,QAAQ,CAAC,yBAAyB,IAAI,CAAC,CAAC,CAAC,IAAI,QAAQ,EAAE,EAAE,kBAAkB,EAAE;YACrF,iCAAiC;SAClC,CAAC,CAAC;IACL,CAAC;IAED,MAAM,MAAM,GAAa,EAAE,CAAC;IAC5B,wBAAwB,CAAC;QACvB,MAAM,EAAE,eAAe;QACvB,cAAc,EAAE,EAAE;QAClB,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,CAAC;KAC/B,CAAC,CAAC;IACH,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;QACtB,MAAM,IAAI,QAAQ,CAAC,qCAAqC,EAAE,qBAAqB,EAAE,MAAM,CAAC,CAAC;IAC3F,CAAC;IAED,OAAO,UAAU,CACf,YAAY,CAAC;QACX,KAAK,EAAE;YACL,MAAM,EAAE,WAAW;YACnB,YAAY,EAAE,8BAA8B;YAC5C,MAAM,EAAE,eAAe;SACxB;KACF,CAAC,EACF,UAAU,CAAC,CAAC,qEAAqE,CAAC,CAAC,CACpF,CAAC;AACJ,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gitsheets-axi",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Agent-facing CLI for gitsheets — token-efficient TOON output, idempotent mutations, self-installing session hooks.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"@toon-format/toon": "^2.2.0",
|
|
47
47
|
"axi-sdk-js": "^0.1.6",
|
|
48
|
-
"gitsheets": "^1.
|
|
48
|
+
"gitsheets": "^1.4.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@types/node": "^25.8.0",
|