@accounter/gmail-listener 0.1.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,61 @@
1
+ {
2
+ "name": "@accounter/gmail-listener",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "A Gmail listener that listens for new emails, extracts financial documents, and sends them to the server",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Urigo/accounter-fullstack.git",
9
+ "directory": "packages/gmail-listener"
10
+ },
11
+ "homepage": "https://github.com/Urigo/accounter-fullstack/packages/gmail-listener#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/Urigo/accounter-fullstack/issues"
14
+ },
15
+ "author": "Gil Gardosh <gilgardosh@gmail.com>",
16
+ "license": "MIT",
17
+ "engines": {
18
+ "node": "^20.0.0 || >= 22"
19
+ },
20
+ "main": "dist/index.js",
21
+ "module": "dist/index.js",
22
+ "files": [
23
+ "SETUP.md",
24
+ "dist",
25
+ "README.md"
26
+ ],
27
+ "keywords": [
28
+ "gmail",
29
+ "email",
30
+ "listener",
31
+ "documents",
32
+ "accounter"
33
+ ],
34
+ "scripts": {
35
+ "build": "yarn typecheck && tsup src/index.ts",
36
+ "dev": "yarn build --watch --onSuccess \"node dist/index.js\"",
37
+ "prepublishOnly": "yarn build",
38
+ "start": "node dist/index.js",
39
+ "typecheck": "tsc --noEmit"
40
+ },
41
+ "dependencies": {
42
+ "@google-cloud/pubsub": "5.3.0",
43
+ "@whatwg-node/fetch": "0.10.13",
44
+ "@whatwg-node/node-fetch": "0.8.5",
45
+ "dotenv": "17.3.1",
46
+ "googleapis": "171.4.0",
47
+ "graphql": "16.13.1",
48
+ "inline-css": "4.0.3",
49
+ "playwright": "1.58.2",
50
+ "zod": "4.3.6"
51
+ },
52
+ "devDependencies": {
53
+ "@types/inline-css": "3.0.4",
54
+ "tsup": "8.5.1",
55
+ "typescript": "5.9.3"
56
+ },
57
+ "publishConfig": {
58
+ "registry": "https://registry.npmjs.org",
59
+ "access": "public"
60
+ }
61
+ }