@izak0s/mplusqapi-node 1.0.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/LICENSE +674 -0
- package/README.md +304 -0
- package/dist/index.d.mts +9343 -0
- package/dist/index.d.ts +9343 -0
- package/dist/index.js +27795 -0
- package/dist/index.mjs +27751 -0
- package/package.json +74 -0
package/package.json
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@izak0s/mplusqapi-node",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "TypeScript client for the MplusKASSA SOAP API",
|
|
5
|
+
"homepage": "https://github.com/izak0s/mplusqapi-node#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/izak0s/mplusqapi-node/issues"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/izak0s/mplusqapi-node.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"mpluskassa",
|
|
15
|
+
"mplusqapi",
|
|
16
|
+
"soap",
|
|
17
|
+
"typescript",
|
|
18
|
+
"api-client"
|
|
19
|
+
],
|
|
20
|
+
"license": "GPL-3.0-only",
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.mjs",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/index.d.mts",
|
|
28
|
+
"default": "./dist/index.mjs"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/index.d.ts",
|
|
32
|
+
"default": "./dist/index.js"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"./package.json": "./package.json"
|
|
36
|
+
},
|
|
37
|
+
"files": [
|
|
38
|
+
"dist",
|
|
39
|
+
"README.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"sideEffects": false,
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=20"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
|
|
48
|
+
"build": "npm run clean && tsup",
|
|
49
|
+
"lint": "eslint .",
|
|
50
|
+
"generate": "ts-node --project scripts/tsconfig.json scripts/generate.ts",
|
|
51
|
+
"generate:local": "ts-node --project scripts/tsconfig.json scripts/generate.ts wsdl.xml",
|
|
52
|
+
"sync:readme": "ts-node --project scripts/tsconfig.json scripts/sync-readme.ts",
|
|
53
|
+
"check": "npm run build && npm run test:types && npm test",
|
|
54
|
+
"test": "node --require ts-node/register/transpile-only --test test/soap.test.ts test/transport.test.ts test/roundtrip.test.ts test/client.test.ts test/generator.test.ts",
|
|
55
|
+
"test:types": "tsc --noEmit -p tsconfig.test.json",
|
|
56
|
+
"prepack": "npm run build",
|
|
57
|
+
"pack:dry-run": "npm pack --dry-run"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"axios": "^1.7.2",
|
|
61
|
+
"fast-xml-parser": "^5.8.0"
|
|
62
|
+
},
|
|
63
|
+
"overrides": {
|
|
64
|
+
"esbuild": "^0.28.1"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@types/node": "^25.9.3",
|
|
68
|
+
"eslint": "^10.5.0",
|
|
69
|
+
"ts-node": "^10.9.2",
|
|
70
|
+
"tsup": "^8.5.1",
|
|
71
|
+
"typescript": "^6.0.3",
|
|
72
|
+
"typescript-eslint": "^8.61.0"
|
|
73
|
+
}
|
|
74
|
+
}
|