-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.04 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.04 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
{
"name": "lib-fints",
"version": "1.4.7",
"description": "Typescript/Javascript client library for Online-Banking via the FinTS 3.0 protocol with PIN/TAN",
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"./dist"
],
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/index.js"
}
}
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"pack": "pnpm run build && pnpm pack --pack-destination ~/npm-repo",
"test": "vitest",
"preprepare": "pnpm run build"
},
"keywords": [
"FinTS",
"HBCI",
"Online Banking",
"Home Banking",
"PIN/TAN"
],
"author": "Robert Weber <robocode@outlook.com>",
"license": "LGPL-2.1-or-later",
"repository": {
"type": "git",
"url": "https://github.com/robocode13/lib-fints.git"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/node": "^20.19.30",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"dependencies": {
"fast-xml-parser": "^5.3.3"
}
}