ai-form-fill 0.1.0 → 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/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-form-fill",
|
|
3
3
|
"description": "Framework-agnostic library for AI-powered form filling. Extract structured data from unstructured text and automatically fill forms using OpenAI, Ollama, or custom AI providers.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
7
7
|
"form",
|
|
@@ -30,14 +30,14 @@
|
|
|
30
30
|
"README.md",
|
|
31
31
|
"LICENSE"
|
|
32
32
|
],
|
|
33
|
-
"types": "./dist/ai-form-
|
|
34
|
-
"main": "./dist/ai-form-
|
|
35
|
-
"module": "./dist/ai-form-
|
|
33
|
+
"types": "./dist/ai-form-fill.d.ts",
|
|
34
|
+
"main": "./dist/ai-form-fill.umd.cjs",
|
|
35
|
+
"module": "./dist/ai-form-fill.js",
|
|
36
36
|
"exports": {
|
|
37
37
|
".": {
|
|
38
|
-
"types": "./dist/ai-form-
|
|
39
|
-
"import": "./dist/ai-form-
|
|
40
|
-
"require": "./dist/ai-form-
|
|
38
|
+
"types": "./dist/ai-form-fill.d.ts",
|
|
39
|
+
"import": "./dist/ai-form-fill.js",
|
|
40
|
+
"require": "./dist/ai-form-fill.umd.cjs"
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|