23 lines
569 B
JSON
23 lines
569 B
JSON
{
|
|
"name": "employee-workstation-report",
|
|
"version": "1.0.0",
|
|
"description": "ISO Compliance Reporting for Employee Workstations",
|
|
"main": "generateMonthlySummary.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "bun run generateMonthlySummary.ts",
|
|
"dev": "bun --watch run generateMonthlySummary.ts"
|
|
},
|
|
"dependencies": {
|
|
"dayjs": "^1.11.10",
|
|
"exceljs": "^4.4.0",
|
|
"fs-extra": "^11.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/fs-extra": "^11.0.4",
|
|
"@types/node": "^20.11.0",
|
|
"bun-types": "latest",
|
|
"typescript": "^5.4.0"
|
|
}
|
|
}
|