-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@pixeldrive/peppol-toolkit",
"version": "0.8.4",
"description": "A TypeScript toolkit for building and reading peppol UBL documents",
"keywords": [
"peppol",
"e-invoicing",
"peppol-toolkit",
"pixeldrive",
"UBL",
"BIS",
"XML",
"UBL-Invoice",
"UBL-CreditNote",
"parser"
],
"license": "MIT",
"homepage": "",
"repository": {
"type": "git",
"url": "https://github.com/PixelDrive/peppol-toolkit"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"test": "npm run build && vitest run --config vitest.config.ts",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-sonarjs": "^3.0.7",
"node-schematron": "^2.1.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vite": "^5.4.21",
"vitest": "^2.1.9"
},
"dependencies": {
"decimal.js": "^10.6.0",
"fast-xml-parser": "^5.5.1",
"zod": "^4.3.6"
}
}