einvoices 0.0.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/LICENSE +21 -0
- package/README.md +24 -0
- package/index.d.ts +3 -0
- package/index.js +3 -0
- package/package.json +27 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 einvoice contributors
|
|
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.
|
package/README.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# einvoices
|
|
2
|
+
|
|
3
|
+
Open source electronic invoicing toolkit.
|
|
4
|
+
|
|
5
|
+
This is an early placeholder release while the project is prepared for future open source development.
|
|
6
|
+
|
|
7
|
+
## Planned Scope
|
|
8
|
+
|
|
9
|
+
Future releases are expected to include support for:
|
|
10
|
+
|
|
11
|
+
- Finvoice
|
|
12
|
+
- UBL
|
|
13
|
+
- PEPPOL
|
|
14
|
+
- XML generation
|
|
15
|
+
- XML validation
|
|
16
|
+
- Parsing utilities
|
|
17
|
+
|
|
18
|
+
## Status
|
|
19
|
+
|
|
20
|
+
This package does not yet provide production-ready electronic invoicing functionality. The initial public API is intentionally minimal and may change before the first feature release.
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
|
|
24
|
+
MIT
|
package/index.d.ts
ADDED
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "einvoices",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Open source electronic invoicing toolkit",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"types": "index.d.ts",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/einvoices/einvoices.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/einvoices/einvoices/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/einvoices/einvoices#readme",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"einvoice",
|
|
18
|
+
"e-invoice",
|
|
19
|
+
"electronic-invoicing",
|
|
20
|
+
"invoice",
|
|
21
|
+
"invoicing",
|
|
22
|
+
"finvoice",
|
|
23
|
+
"ubl",
|
|
24
|
+
"peppol",
|
|
25
|
+
"xml"
|
|
26
|
+
]
|
|
27
|
+
}
|