Skip to content

Commit 34fd110

Browse files
authored
Merge pull request #16 from DojoCodingLabs/chore/docs-licensing-acknowledgments
2 parents b725693 + 96f9a52 commit 34fd110

7 files changed

Lines changed: 80 additions & 6 deletions

File tree

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Dojo Coding Labs
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**TypeScript SDK, CLI & MCP Server for Costa Rica Electronic Invoicing (Hacienda API v4.4)**
44

55
[![npm version](https://img.shields.io/npm/v/@hacienda-cr/sdk.svg)](https://www.npmjs.com/package/@hacienda-cr/sdk)
6-
[![CI](https://github.com/danielbejarano/hacienda-cr/actions/workflows/ci.yml/badge.svg)](https://github.com/danielbejarano/hacienda-cr/actions/workflows/ci.yml)
6+
[![CI](https://github.com/DojoCodingLabs/hacienda-cr/actions/workflows/ci.yml/badge.svg)](https://github.com/DojoCodingLabs/hacienda-cr/actions/workflows/ci.yml)
77
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
88

99
A complete toolkit for Costa Rica electronic invoicing (_comprobantes electronicos_) against the Ministerio de Hacienda API v4.4. Three-layer architecture: **SDK** (core library) -> **CLI** (`hacienda` binary) -> **MCP Server** (AI-accessible tools).
@@ -981,6 +981,20 @@ pnpm --filter @hacienda-cr/sdk test clave.spec.ts
981981

982982
---
983983

984+
## Acknowledgments
985+
986+
This project builds on the pioneering work of the Costa Rica open-source community:
987+
988+
- **[CRLibre/API_Hacienda](https://github.com/CRLibre/API_Hacienda)** — The original open-source API for Costa Rica electronic invoicing (PHP). Their documentation, flow diagrams, and community resources were invaluable references for understanding the Hacienda API. Thank you to the entire CRLibre community for making electronic invoicing accessible to Costa Rican developers. 🇨🇷
989+
- **[CRLibre/fe-hacienda-cr-misc](https://github.com/CRLibre/fe-hacienda-cr-misc)** — Shared resources and documentation for electronic invoicing in Costa Rica.
990+
984991
## License
985992

986-
MIT
993+
MIT — see [LICENSE](LICENSE) for details.
994+
995+
---
996+
997+
<p align="center">
998+
<strong>Powered by <a href="https://dojocoding.io">Dojo Coding</a></strong><br/>
999+
Open source tools for Costa Rican developers 🇨🇷
1000+
</p>

package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
{
22
"name": "hacienda-cr",
33
"private": true,
4+
"license": "MIT",
5+
"author": "Dojo Coding Labs <dev@dojocoding.io> (https://dojocoding.io)",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/DojoCodingLabs/hacienda-cr.git"
9+
},
10+
"homepage": "https://github.com/DojoCodingLabs/hacienda-cr#readme",
411
"packageManager": "pnpm@9.15.4",
512
"engines": {
613
"node": ">=22"

packages/cli/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,13 @@
2828
"@hacienda-cr/sdk": "workspace:*",
2929
"@hacienda-cr/shared": "workspace:*",
3030
"citty": "^0.2.1"
31-
}
31+
},
32+
"license": "MIT",
33+
"author": "Dojo Coding Labs <dev@dojocoding.io> (https://dojocoding.io)",
34+
"repository": {
35+
"type": "git",
36+
"url": "https://github.com/DojoCodingLabs/hacienda-cr.git",
37+
"directory": "packages/cli"
38+
},
39+
"homepage": "https://github.com/DojoCodingLabs/hacienda-cr#readme"
3240
}

packages/mcp/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,13 @@
2929
"@hacienda-cr/shared": "workspace:*",
3030
"@modelcontextprotocol/sdk": "^1.26.0",
3131
"zod": "^4.3.6"
32-
}
32+
},
33+
"license": "MIT",
34+
"author": "Dojo Coding Labs <dev@dojocoding.io> (https://dojocoding.io)",
35+
"repository": {
36+
"type": "git",
37+
"url": "https://github.com/DojoCodingLabs/hacienda-cr.git",
38+
"directory": "packages/mcp"
39+
},
40+
"homepage": "https://github.com/DojoCodingLabs/hacienda-cr#readme"
3341
}

packages/sdk/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,13 @@
3434
},
3535
"devDependencies": {
3636
"@types/node-forge": "^1.3.11"
37-
}
37+
},
38+
"license": "MIT",
39+
"author": "Dojo Coding Labs <dev@dojocoding.io> (https://dojocoding.io)",
40+
"repository": {
41+
"type": "git",
42+
"url": "https://github.com/DojoCodingLabs/hacienda-cr.git",
43+
"directory": "packages/sdk"
44+
},
45+
"homepage": "https://github.com/DojoCodingLabs/hacienda-cr#readme"
3846
}

shared/package.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,13 @@
2323
},
2424
"dependencies": {
2525
"zod": "^4.3.6"
26-
}
26+
},
27+
"license": "MIT",
28+
"author": "Dojo Coding Labs <dev@dojocoding.io> (https://dojocoding.io)",
29+
"repository": {
30+
"type": "git",
31+
"url": "https://github.com/DojoCodingLabs/hacienda-cr.git",
32+
"directory": "shared"
33+
},
34+
"homepage": "https://github.com/DojoCodingLabs/hacienda-cr#readme"
2735
}

0 commit comments

Comments
 (0)