-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.55 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.55 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "factur-x-kit",
"version": "0.3.1",
"description": "Read and Write Hybrid Invoice Documents (EN 16931 / Factur-X / ZUGFeRD / eRechnung) in Javascript / Typescript.",
"keywords": [
"en16931",
"factur-x",
"zugferd",
"erechnung",
"xrechnung",
"hybrid invoice documents"
],
"bugs": {
"url": "https://github.com/NikolaiMe/factur-x-kit/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NikolaiMe/factur-x-kit.git"
},
"license": "MIT",
"author": "Nikolai Merz (https://github.com/NikolaiMe)",
"contributors": [
"Nikolai Merz (https://github.com/NikolaiMe)",
"Joachim Schwarm (https://github.com/schwarmco)"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"code-check": "npx tsx ./skripts/codeComparer.ts",
"prepare": "husky",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"test": "jest",
"test:debug": "npx jest --inspect-brk --runInBand",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"fast-xml-parser": "^4.5.0",
"mime-types": "^3.0.1",
"object-path": "^0.11.8",
"pdf-lib": "^1.17.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@miller-svt/prettier-plugin-sort-imports": "^4.4.1",
"@tsconfig/recommended": "^1.0.8",
"@types/dot-object": "^2.1.6",
"@types/jest": "^29.5.12",
"@types/mime-types": "^3.0.1",
"@types/object-path": "^0.11.4",
"@xmldom/xmldom": "^0.9.7",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"fontoxpath": "^3.33.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"node-schematron": "^2.1.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.5",
"ts-jest": "^29.1.5",
"tsup": "^8.1.0",
"tsx": "^4.20.5",
"typescript": "^5.5.3",
"typescript-eslint": "^8.15.0",
"xmllint-wasm": "^4.0.2",
"zod-to-ts": "^1.2.0"
}
}