Initial commit

This commit is contained in:
Marc Fokkert
2025-01-24 22:05:04 +01:00
commit f99d2709e0
8 changed files with 774 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "brother-printer-webhook",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"start": "tsx print.ts"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"lodash": "^4.17.21",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"devDependencies": {
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.10"
}
}