directus-extension-texttoanything 1.4.1 → 1.4.2

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 CHANGED
@@ -1,120 +1,120 @@
1
- {
2
- "name": "directus-extension-texttoanything",
3
- "description": "Generate PDF`s/QRcodes/Barcodes or use OCR within Directus!",
4
- "version": "1.4.1",
5
- "icon": "text_fields",
6
- "author": {
7
- "name": "Attacler/Bart",
8
- "email": "bart@attacler.com"
9
- },
10
- "license": "MIT",
11
- "bugs": {
12
- "url": "https://github.com/Attacler/TextToAnything-Directus/issues"
13
- },
14
- "repository": {
15
- "type": "git",
16
- "url": "https://github.com/Attacler/TextToAnything-Directus.git"
17
- },
18
- "keywords": [
19
- "directus",
20
- "directus-extension",
21
- "directus-custom-bundle"
22
- ],
23
- "files": [
24
- "dist"
25
- ],
26
- "directus:extension": {
27
- "type": "bundle",
28
- "path": {
29
- "app": "dist/app.js",
30
- "api": "dist/api.js"
31
- },
32
- "entries": [
33
- {
34
- "type": "operation",
35
- "name": "GenerateBarcode",
36
- "source": {
37
- "app": "GenerateBarcode/src/app.ts",
38
- "api": "GenerateBarcode/src/api.ts"
39
- }
40
- },
41
- {
42
- "type": "operation",
43
- "name": "GeneratePDF",
44
- "source": {
45
- "app": "GeneratePDF/src/app.ts",
46
- "api": "GeneratePDF/src/api.ts"
47
- }
48
- },
49
- {
50
- "type": "operation",
51
- "name": "GeneratePDFFromTemplate",
52
- "source": {
53
- "app": "GeneratePDFGenerateFromTemplate/src/app.ts",
54
- "api": "GeneratePDFGenerateFromTemplate/src/api.ts"
55
- }
56
- },
57
- {
58
- "type": "operation",
59
- "name": "GenerateQRCode",
60
- "source": {
61
- "app": "GenerateQRCode/src/app.ts",
62
- "api": "GenerateQRCode/src/api.ts"
63
- }
64
- },
65
- {
66
- "type": "hook",
67
- "name": "bootstrap",
68
- "source": "installationhook/src/index.ts"
69
- },
70
- {
71
- "type": "module",
72
- "name": "settings module",
73
- "source": "settingsmodule/src/index.ts"
74
- },
75
- {
76
- "type": "interface",
77
- "name": "PDF template selector",
78
- "source": "PDFTemplateSelector/src/index.ts"
79
- },
80
- {
81
- "type": "interface",
82
- "name": "PDF generator interface",
83
- "source": "GeneratePDFFromTemplateInterface/src/index.ts"
84
- },
85
- {
86
- "type": "interface",
87
- "name": "OCR-interface",
88
- "source": "OCR-interface/src/index.ts"
89
- },
90
- {
91
- "type": "endpoint",
92
- "name": "Text To Anything endpoint",
93
- "source": "TTA-endpoint/src/index.ts"
94
- },
95
- {
96
- "type": "operation",
97
- "name": "OCR-operator",
98
- "source": {
99
- "app": "OCR-operator/app.ts",
100
- "api": "OCR-operator/api.ts"
101
- }
102
- }
103
- ],
104
- "host": "^9.22.1"
105
- },
106
- "scripts": {
107
- "build": "directus-extension build",
108
- "dev": "directus-extension build -w --no-minify",
109
- "add": "directus-extension add"
110
- },
111
- "devDependencies": {
112
- "@directus/extensions-sdk": "9.22.1",
113
- "@types/node": "^22.15.3",
114
- "typescript": "^5.8.3",
115
- "vue": "^3.5.13"
116
- },
117
- "dependencies": {
118
- "html-format": "^1.1.6"
119
- }
120
- }
1
+ {
2
+ "name": "directus-extension-texttoanything",
3
+ "description": "Generate PDF`s/QRcodes/Barcodes or use OCR within Directus!",
4
+ "version": "1.4.2",
5
+ "icon": "text_fields",
6
+ "author": {
7
+ "name": "Attacler/Bart",
8
+ "email": "bart@attacler.com"
9
+ },
10
+ "license": "MIT",
11
+ "bugs": {
12
+ "url": "https://github.com/Attacler/TextToAnything-Directus/issues"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/Attacler/TextToAnything-Directus.git"
17
+ },
18
+ "keywords": [
19
+ "directus",
20
+ "directus-extension",
21
+ "directus-custom-bundle"
22
+ ],
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "directus:extension": {
27
+ "type": "bundle",
28
+ "path": {
29
+ "app": "dist/app.js",
30
+ "api": "dist/api.js"
31
+ },
32
+ "entries": [
33
+ {
34
+ "type": "operation",
35
+ "name": "GenerateBarcode",
36
+ "source": {
37
+ "app": "GenerateBarcode/src/app.ts",
38
+ "api": "GenerateBarcode/src/api.ts"
39
+ }
40
+ },
41
+ {
42
+ "type": "operation",
43
+ "name": "GeneratePDF",
44
+ "source": {
45
+ "app": "pdf/GeneratePDF/src/app.ts",
46
+ "api": "pdf/GeneratePDF/src/api.ts"
47
+ }
48
+ },
49
+ {
50
+ "type": "operation",
51
+ "name": "GeneratePDFFromTemplate",
52
+ "source": {
53
+ "app": "pdf/GeneratePDFGenerateFromTemplate/src/app.ts",
54
+ "api": "pdf/GeneratePDFGenerateFromTemplate/src/api.ts"
55
+ }
56
+ },
57
+ {
58
+ "type": "operation",
59
+ "name": "GenerateQRCode",
60
+ "source": {
61
+ "app": "GenerateQRCode/src/app.ts",
62
+ "api": "GenerateQRCode/src/api.ts"
63
+ }
64
+ },
65
+ {
66
+ "type": "hook",
67
+ "name": "bootstrap",
68
+ "source": "installationhook/src/index.ts"
69
+ },
70
+ {
71
+ "type": "module",
72
+ "name": "settings module",
73
+ "source": "settingsmodule/src/index.ts"
74
+ },
75
+ {
76
+ "type": "interface",
77
+ "name": "PDF template selector",
78
+ "source": "pdf/PDFTemplateSelector/src/index.ts"
79
+ },
80
+ {
81
+ "type": "interface",
82
+ "name": "PDF generator interface",
83
+ "source": "pdf/GeneratePDFFromTemplateInterface/src/index.ts"
84
+ },
85
+ {
86
+ "type": "interface",
87
+ "name": "ocr/OCR-interface",
88
+ "source": "ocr/OCR-interface/src/index.ts"
89
+ },
90
+ {
91
+ "type": "endpoint",
92
+ "name": "Text To Anything endpoint",
93
+ "source": "TTA-endpoint/src/index.ts"
94
+ },
95
+ {
96
+ "type": "operation",
97
+ "name": "OCR-operator",
98
+ "source": {
99
+ "app": "ocr/OCR-operator/app.ts",
100
+ "api": "ocr/OCR-operator/api.ts"
101
+ }
102
+ }
103
+ ],
104
+ "host": "^10.0.0 || ^11.0.0"
105
+ },
106
+ "scripts": {
107
+ "build": "directus-extension build",
108
+ "dev": "directus-extension build -w --no-minify",
109
+ "add": "directus-extension add"
110
+ },
111
+ "devDependencies": {
112
+ "@directus/extensions-sdk": "9.22.1",
113
+ "@types/node": "^22.15.3",
114
+ "typescript": "^5.8.3",
115
+ "vue": "^3.5.13"
116
+ },
117
+ "dependencies": {
118
+ "html-format": "^1.1.6"
119
+ }
120
+ }
package/dist/test.png DELETED
Binary file