fiskalizacija2 0.4.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,62 @@
1
+ {
2
+ "name": "fiskalizacija2",
3
+ "version": "0.4.0",
4
+ "description": "Croatian fiscalization library for Node.js",
5
+ "keywords": [
6
+ "fiskalizacija",
7
+ "fiskalizacija2",
8
+ "eFiskalizacija",
9
+ "eIzvještavanje"
10
+ ],
11
+ "bugs": {
12
+ "url": "https://github.com/shunkica/fiskalizacija2-js/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/shunkica/fiskalizacija2-js.git"
17
+ },
18
+ "license": "MIT",
19
+ "author": "shunkica.dev@gmail.com",
20
+ "type": "module",
21
+ "exports": {
22
+ ".": "./dist/index.js"
23
+ },
24
+ "types": "dist/index.d.ts",
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "build": "tsup",
30
+ "clean": "rm -rf dist",
31
+ "dev": "tsup --watch",
32
+ "format": "prettier --write .",
33
+ "lint": "eslint src tests",
34
+ "lint:fix": "eslint --fix src tests",
35
+ "test": "vitest --exclude tests/external",
36
+ "test:coverage": "vitest --coverage --exclude tests/external",
37
+ "test:external": "vitest run tests/external",
38
+ "test:watch": "vitest --watch --exclude tests/external"
39
+ },
40
+ "dependencies": {
41
+ "libxml2-wasm": "^0.6.0",
42
+ "xml-crypto": "git+https://github.com/shunkica/xml-crypto.git#9cdc22d"
43
+ },
44
+ "devDependencies": {
45
+ "@microsoft/api-extractor": "^7.53.1",
46
+ "@types/node": "^18",
47
+ "@typescript-eslint/eslint-plugin": "^8.46.2",
48
+ "@typescript-eslint/parser": "^8.46.2",
49
+ "@vitest/coverage-v8": "^3.2.4",
50
+ "eslint": "^9.38.0",
51
+ "eslint-config-prettier": "^10.1.8",
52
+ "eslint-import-resolver-typescript": "^4.4.4",
53
+ "eslint-plugin-import-x": "^4.16.1",
54
+ "prettier": "^3.6.2",
55
+ "tsup": "^8.5.0",
56
+ "typescript": "^5.9.3",
57
+ "vitest": "^3.2.4"
58
+ },
59
+ "engines": {
60
+ "node": ">=18.0.0"
61
+ }
62
+ }