@omniyat/aimodule 1.0.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/README.md +180 -0
- package/dist/index.cjs +300 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.mjs +300 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +40 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@omniyat/aimodule",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A Node.js package that scans files in a specified directory, extracts text using OCR, and generates summaries using the Google GenAI API.",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "dist/index.cjs",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "rollup -c rollup.config.cjs",
|
|
9
|
+
"prepare": "npm run build",
|
|
10
|
+
"lint": "eslint .",
|
|
11
|
+
"test": "node --env-file=.env src/tests/index.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist"
|
|
15
|
+
],
|
|
16
|
+
"keywords": [
|
|
17
|
+
"invoice",
|
|
18
|
+
"google-genai",
|
|
19
|
+
"generator"
|
|
20
|
+
],
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "brinda_yawa",
|
|
23
|
+
"email": "mawuviwobrinda@gmail.com"
|
|
24
|
+
},
|
|
25
|
+
"license": "ISC",
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@google/genai": "^1.42.0",
|
|
28
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
29
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
30
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
31
|
+
"dotenv": "^17.3.1",
|
|
32
|
+
"file-type": "^21.3.0"
|
|
33
|
+
},
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@rollup/plugin-commonjs": "^29.0.0",
|
|
36
|
+
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
37
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
38
|
+
"rollup": "^4.9.6"
|
|
39
|
+
}
|
|
40
|
+
}
|