@beel_es/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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +71 -0
  3. package/dist/index.js +11388 -0
  4. package/package.json +44 -0
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@beel_es/cli",
3
+ "version": "0.1.0",
4
+ "description": "Agent-first CLI for the BeeL invoicing API. Commands are derived at startup from the embedded OpenAPI spec. Run with npx @beel_es/cli — no install needed.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "beel": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist"
12
+ ],
13
+ "engines": {
14
+ "node": ">=20"
15
+ },
16
+ "scripts": {
17
+ "build": "tsup",
18
+ "dev": "tsx src/index.ts",
19
+ "test": "vitest run",
20
+ "typecheck": "tsc --noEmit",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/beel-es/beel-cli.git"
26
+ },
27
+ "keywords": [
28
+ "beel",
29
+ "invoicing",
30
+ "verifactu",
31
+ "cli",
32
+ "api",
33
+ "openapi"
34
+ ],
35
+ "devDependencies": {
36
+ "@types/node": "^22.0.0",
37
+ "commander": "^14.0.0",
38
+ "tsup": "^8.0.0",
39
+ "tsx": "^4.0.0",
40
+ "typescript": "^5.7.0",
41
+ "vitest": "^3.0.0",
42
+ "yaml": "^2.6.0"
43
+ }
44
+ }