noxctl 0.6.0 → 0.6.1
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.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +6 -3
package/dist/cli.js
CHANGED
|
@@ -22,7 +22,7 @@ process.stdout.on('error', (err) => {
|
|
|
22
22
|
program
|
|
23
23
|
.name('noxctl')
|
|
24
24
|
.description('CLI and MCP server for Fortnox accounting')
|
|
25
|
-
.version('0.6.
|
|
25
|
+
.version('0.6.1')
|
|
26
26
|
.addOption(new Option('-o, --output <format>', 'Output format (default: table on TTY, json when piped)')
|
|
27
27
|
.choices(['json', 'table'])
|
|
28
28
|
.default(undefined))
|
package/dist/index.js
CHANGED
|
@@ -32,7 +32,7 @@ import { registerScheduleTimeTools } from './tools/scheduletimes.js';
|
|
|
32
32
|
export function createServer() {
|
|
33
33
|
const server = new McpServer({
|
|
34
34
|
name: 'fortnox-mcp',
|
|
35
|
-
version: '0.6.
|
|
35
|
+
version: '0.6.1',
|
|
36
36
|
});
|
|
37
37
|
registerCustomerTools(server);
|
|
38
38
|
registerInvoiceTools(server);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "noxctl",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"mcpName": "io.github.magnus-gille/noxctl",
|
|
5
5
|
"description": "CLI and MCP server for Fortnox accounting — invoices, customers, bookkeeping, and VAT",
|
|
6
6
|
"type": "module",
|
|
@@ -52,13 +52,16 @@
|
|
|
52
52
|
"*.ts": "prettier --write"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@types/node": "^
|
|
55
|
+
"@types/node": "^22.20.1",
|
|
56
56
|
"eslint": "^10.0.3",
|
|
57
57
|
"husky": "^9.1.7",
|
|
58
|
-
"lint-staged": "^
|
|
58
|
+
"lint-staged": "^17.1.0",
|
|
59
59
|
"prettier": "^3.8.1",
|
|
60
60
|
"typescript": "^5.9.3",
|
|
61
61
|
"typescript-eslint": "^8.57.0",
|
|
62
62
|
"vitest": "^4.1.0"
|
|
63
|
+
},
|
|
64
|
+
"overrides": {
|
|
65
|
+
"@hono/node-server": "^2.0.11"
|
|
63
66
|
}
|
|
64
67
|
}
|