@keypro/cli 0.1.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/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@keypro/cli",
3
+ "version": "0.1.0",
4
+ "description": "KeyPro.hu B2B szoftverlicenc webshop CLI: rendeles leadas, rendelesek/szamlak/termekkulcsok lekerdezese, profil kezeles. AI-ugynok (Claude Code, Codex) barat: --json kimenet es beepitett MCP szerver (keypro mcp).",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "keypro": "dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "AGENTS.md",
13
+ "README.md"
14
+ ],
15
+ "engines": {
16
+ "node": ">=20"
17
+ },
18
+ "scripts": {
19
+ "build": "tsup",
20
+ "typecheck": "tsc --noEmit",
21
+ "test": "vitest run",
22
+ "dev": "tsx src/index.ts",
23
+ "prepublishOnly": "npm run build"
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/InstaSoft-hu/keypro-ts.git",
31
+ "directory": "cli"
32
+ },
33
+ "keywords": [
34
+ "keypro",
35
+ "cli",
36
+ "mcp",
37
+ "b2b",
38
+ "license"
39
+ ],
40
+ "dependencies": {
41
+ "@modelcontextprotocol/sdk": "^1.13.0",
42
+ "commander": "^14.0.0",
43
+ "zod": "^4.1.5"
44
+ },
45
+ "devDependencies": {
46
+ "@types/node": "^24.3.0",
47
+ "tsup": "^8.5.0",
48
+ "tsx": "^4.23.0",
49
+ "typescript": "^5.9.3",
50
+ "vitest": "^4.1.10"
51
+ },
52
+ "author": "InstaSoft Informatikai Zrt. (https://keypro.hu)",
53
+ "homepage": "https://keypro.hu"
54
+ }