@medine-tech/backoffice-cli 0.2.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,92 @@
1
+ {
2
+ "name": "@medine-tech/backoffice-cli",
3
+ "version": "0.2.0",
4
+ "description": "CLI de MedineTech ERP para descubrir contratos de Backoffice y operar facturas de compras desde la terminal.",
5
+ "keywords": [
6
+ "erp",
7
+ "backoffice",
8
+ "cli",
9
+ "oclif",
10
+ "medinetech",
11
+ "facturas",
12
+ "compras"
13
+ ],
14
+ "homepage": "https://github.com/medine-tech/medine-tech-erp/tree/main/apps/backoffice-cli#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/medine-tech/medine-tech-erp/issues"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/medine-tech/medine-tech-erp.git",
21
+ "directory": "apps/backoffice-cli"
22
+ },
23
+ "license": "MIT",
24
+ "author": "MedineTech",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "private": false,
29
+ "type": "module",
30
+ "engines": {
31
+ "node": "^24.15.0 || >=26.0.0",
32
+ "npm": "^12.0.2"
33
+ },
34
+ "scripts": {
35
+ "test": "vitest run",
36
+ "lint": "eslint . --max-warnings=0",
37
+ "lint:fix": "eslint . --fix --max-warnings=0",
38
+ "check-types": "tsc --noEmit && tsc --noEmit -p tsconfig.test.json",
39
+ "build": "node scripts/build.mjs",
40
+ "prepack": "npm run build",
41
+ "test:pack": "node scripts/verify-pack.mjs"
42
+ },
43
+ "devDependencies": {
44
+ "@medine-tech/backoffice-api": "*",
45
+ "@medine-tech/eslint-config": "*",
46
+ "@medine-tech/tsconfig": "*",
47
+ "@types/node": "^24.9.2",
48
+ "esbuild": "0.28.2",
49
+ "eslint": "^9.39.4",
50
+ "globals": "^17.11.0",
51
+ "typescript": "6.0.3",
52
+ "vitest": "^4.1.11"
53
+ },
54
+ "bin": {
55
+ "backoffice": "bin/run.js"
56
+ },
57
+ "files": [
58
+ "bin",
59
+ "dist",
60
+ "LICENSE",
61
+ "README.md"
62
+ ],
63
+ "dependencies": {
64
+ "@oclif/core": "5.0.0",
65
+ "ajv": "8.20.0",
66
+ "ajv-draft-04": "1.0.0",
67
+ "ajv-formats": "3.0.1"
68
+ },
69
+ "oclif": {
70
+ "bin": "backoffice",
71
+ "topicSeparator": " ",
72
+ "commands": {
73
+ "strategy": "explicit",
74
+ "target": "./dist/index.js",
75
+ "identifier": "COMMANDS"
76
+ },
77
+ "topics": {
78
+ "profile": {
79
+ "description": "Perfiles de acceso"
80
+ },
81
+ "purchases": {
82
+ "description": "Compras"
83
+ },
84
+ "purchases:invoice": {
85
+ "description": "Facturas de compras"
86
+ },
87
+ "api": {
88
+ "description": "Catálogo y solicitudes validadas"
89
+ }
90
+ }
91
+ }
92
+ }