-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.71 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "declarenta",
"version": "0.58.5",
"description": "Open-source tool to convert foreign broker reports (IBKR, Degiro, Scalable Capital, eToro, Freedom24) into Spanish tax declarations (Modelo 100, 720, D-6). Browser-first, privacy-focused.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"declarenta": "./dist/cli.js"
},
"files": [
"dist/index.js",
"dist/cli.js",
"dist/**/*.d.ts",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"dev": "vite",
"build": "tsup && vite build",
"build:lib": "tsup",
"build:web": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"typecheck": "tsc --noEmit",
"typecheck:tests": "tsc --noEmit -p tsconfig.test.json",
"cli": "tsx src/cli/index.ts"
},
"keywords": [
"spain",
"tax",
"renta",
"IRPF",
"modelo-100",
"modelo-720",
"AEAT",
"interactive-brokers",
"IBKR",
"degiro",
"scalable-capital",
"etoro",
"freedom24",
"FIFO",
"capital-gains",
"dividends",
"hacienda",
"fiscal",
"declaracion",
"broker"
],
"author": "GeiserX",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GeiserX/DeclaRenta.git"
},
"homepage": "https://declarenta.com",
"bugs": {
"url": "https://github.com/GeiserX/DeclaRenta/issues"
},
"engines": {
"node": "^20.19.0 || >=22.13.0"
},
"dependencies": {
"commander": "^13.1.0",
"decimal.js": "^10.5.0",
"fast-xml-parser": "^5.10.0",
"jspdf": "4.2.1",
"jspdf-autotable": "5.0.8",
"pdfkit": "^0.19.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@types/node": "^22.20.1",
"@types/pdfkit": "^0.17.6",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"jsdom": "^29.1.1",
"tsup": "^8.4.0",
"tsx": "^4.23.1",
"typescript": "^5.8.0",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.8"
},
"overrides__comment": "esbuild pinned to clear GHSA-gv7w-rqvm-qjhr (High) + GHSA-g7r4-m6w7-qqqr (Low), both <0.28.1. tsup/tsx pull esbuild transitively below the fix; this dedupes all copies to 0.28.1. Vite 8 uses Rolldown/Oxc (not esbuild) for the web build, so this can't re-trigger the v6 destructuring-target failure. Drop this override once tsup/tsx/vite raise their own esbuild floor to >=0.28.1.",
"overrides": {
"esbuild": "^0.28.1"
}
}