@getpeppr/sdk 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,53 @@
1
+ {
2
+ "name": "@getpeppr/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Send Peppol invoices in 5 lines of code",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js",
11
+ "types": "./dist/index.d.ts"
12
+ }
13
+ },
14
+ "files": ["dist", "README.md"],
15
+ "sideEffects": false,
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "dev": "tsc --watch",
19
+ "test": "vitest",
20
+ "prepublishOnly": "npm run build",
21
+ "example": "tsx examples/send-invoice.ts"
22
+ },
23
+ "keywords": [
24
+ "peppol",
25
+ "e-invoicing",
26
+ "ubl",
27
+ "bis3",
28
+ "electronic-invoicing",
29
+ "typescript",
30
+ "sdk",
31
+ "api",
32
+ "invoice",
33
+ "europe",
34
+ "eu"
35
+ ],
36
+ "author": "getpeppr <hello@getpeppr.dev>",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "https://github.com/zerolooplabs/getpeppr.git",
41
+ "directory": "packages/sdk"
42
+ },
43
+ "homepage": "https://getpeppr.dev",
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "devDependencies": {
48
+ "typescript": "^5.7.0",
49
+ "vitest": "^3.0.0",
50
+ "tsx": "^4.19.0",
51
+ "@types/node": "^22.0.0"
52
+ }
53
+ }