-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.9 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
{
"name": "fiskalizacija2",
"version": "0.16.1",
"description": "Croatian fiscalization library for Node.js",
"keywords": [
"fiskalizacija",
"fiskalizacija2",
"eFiskalizacija",
"eIzvještavanje"
],
"bugs": {
"url": "https://github.com/shunkica/fiskalizacija2-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shunkica/fiskalizacija2-js.git"
},
"license": "MIT",
"author": "shunkica.dev@gmail.com",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"dev": "tsup --watch",
"format": "prettier --write .",
"lint": "eslint src tests",
"lint:fix": "eslint --fix src tests",
"test": "vitest --exclude tests/external",
"test:coverage": "vitest --coverage --exclude tests/external",
"test:external": "vitest run tests/external",
"test:watch": "vitest --watch --exclude tests/external"
},
"dependencies": {
"libxml2-wasm": "^0.7.1",
"luxon": "^3.7.2",
"xml-crypto": "git+https://github.com/node-saml/xml-crypto.git#73db72d"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.58.12",
"@types/luxon": "^3.7.2",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"prettier": "^3.9.6",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20.19.0"
}
}